المساعد الشخصي الرقمي

مشاهدة النسخة كاملة : واتساب Whatsapp رابط / كود التحدث عبر الواتساب Web whatsapp



Rise Company
08-05-2022, 22:06
واتساب Whatsapp رابط التحدث عبر الواتساب Web whatsapp
html / code whatsapp chat link - whatsapp link in html Code
اثناء تصميم موقعك يمكنك وضع رابط التحدث عبر الواتس اب
بمجرد الضغط عليه يفتح شات على الواتس اب
سواء من الكمبيوتر او الموبايل

https://www.rise.company/forum/images/imported/2022/05/4.jpg

روابط التحدث عبر الواتساب


https://wa.me/201000001637

او


https://api.whatsapp.com/send?phone=201000001637

اذا اردت المحادثة ان تبدا بنص جاهز استخدم


https://wa.me/201000001637/?text=Hi Sam, Whatsup

https://youtu.be/N6cFWrFa6CE

ملحوظة :
كود الدولة يتم وضعه بدون علامة " + "

مرجع:
https://www.codegrepper.com/code-examples/html/whatsapp+link+in+html
https://stackoverflow.com/questions/30344476/web-link-to-specific-whatsapp-contact
https://itgiggs.in/adding-whatsapp-click-to-chat-on-web/#.YngjXlRBy3A

Rise Company
08-05-2022, 22:14
********* UPDATE ADDED AT THE END *********
I've tried many approaches and I have a winner (see Test 3), here is the result of each one:
(I think the Test 3 will also work for you because if the person visiting your site doesn't have you on their contact list, it's the only option that will allow it.)
In all tests, the number had to be complete, with country and location code without any initial zeros. Example:



[*=center]+55(011) 99999-9999 (NOT)
[*=center]+5511999999999 (YES)


On tests 1 and 2, it only worked with a plus sign on the country code: +5511999999999
Test 1:
<a href="whatsapp://send?abid=phonenumber&text=Hello%2C%20World!">Send Message</a>
This way you must have the phonenumber on your contact list. It doesn't work for me because I wanted to be able to send a message to a number which I may not have on my contact list.
If you don't have the number on your contact list, it opens the Whatsapp listing all your registered contacts, so you can choose one.
It's a good option for sharing stuff.
Test 2:
<a href="intent://send/phonenumber#Intent;scheme=smsto;package=com.whatsa pp;action=android.intent.action.SENDTO;end">Send Message</a>
This approach only works on Android AND if you have the number on your contact list. If you don't have it, Android opens your SMS app, so you can invite the contact to use Whatsapp.
Test 3 (The Winner):
<a href="https://api.whatsapp.com/send?phone=15551234567">Send Message</a>
This was the only way that worked fully for me.



[*=center]It works on Android, iOS and Web app on the desktop,
[*=center]You can start a conversation with a number that you don't have on your contact list
[*=center]You can create a link with one pre-built message adding &text=[message-url-encoded] like:


https://api.whatsapp.com/send?phone=15551234567&text=Send20%a20%quote
And if you wish to have a bookmarklet for additional ease of use, you may use this one:
javascript: (function() { var val= prompt("Enter phone number",""); if (val) location="https://api.whatsapp.com/send?phone="+escape('972' + val)+""; })()
Youll need to change the country code(or remove it) to you.r target country and paste it in the address field in a chrome/firefox link
Worth notice:


[*=center]I had to update my WhatsApp to the latest version
[*=center]The number's country code must not have a leading plus
[*=center]More details here: https://www.whatsapp.com/faq/en/general/26000030


***************** UPDATE (START) *****************
Whatsapp made available other option, now you can create one link to a conversation like this:
https://wa.me/[phonenumber] (https://wa.me/%5Bphonenumber%5D)
The phone number should be in international format:
Like this:
https://wa.me/552196312XXXX
NOT like this:
https://wa.me/+55(021)96312-XXXX
And if you want to add one pre-built message to your link, you can add ?text= at the end with the text URL Encoded:
https://wa.me/552196312XXXX?text=[message-url-encoded]
Exemple:
https://wa.me/552196312XXXX?text=Send20%a20%quote
More info here:
https://faq.whatsapp.com/general/chats/how-to-use-click-to-chat
***************** UPDATE (END) *****************