如何在PHP网站上添加WhatsApp共享按钮?

时间:2018-10-16 16:52:01

标签: php share whatsapp

下面的链接正在使用Facebook和其他网络共享帖子

如何放置和链接Whatsapp共享按钮?

<a href="#" class="fa fa-facebook" onclick="OpenShareWindow('https://www.facebook.com/sharer/sharer.php?u={{ENCODED_URL}}')"></a>
               <a href="#" class="fa fa-twitter" onclick="OpenShareWindow('https://twitter.com/home?status={{ENCODED_URL}}')"></a>
               <a href="#" class="fa fa-google" onclick="OpenShareWindow('https://plus.google.com/share?url={{ENCODED_URL}}')"></a>
               <a href="#" class="fa fa-linkedin" onclick="OpenShareWindow('https://www.linkedin.com/shareArticle?mini=true&url={{ENCODED_URL}}&title={{TITLE}}')"></a>
               <a href="#" class="fa fa-pinterest" onclick="OpenShareWindow('https://pinterest.com/pin/create/button/?url={{ENCODED_URL}}&media={{THUMBNAIL}}')"></a>
               <a href="#" class="fa fa-tumblr" onclick="OpenShareWindow('http://www.tumblr.com/share/link?url={{ENCODED_URL}}')"></a>
               <a href="#" class="fa fa-reddit" onclick="OpenShareWindow('http://www.reddit.com/submit?url={{ENCODED_URL}}')"></a>

4 个答案:

答案 0 :(得分:1)

要创建自己的链接,请使用https://wa.me/,其中是国际格式的完整电话号码。以国际格式添加电话号码时,请省略任何零,方括号或破折号。有关国际号码的详细说明,请阅读本文。请记住,该电话号码必须在WhatsApp上具有有效帐户。

使用:https://wa.me/15551234567

请勿使用:https://wa.me/+001-(555)1234567

要创建带有将自动显示在聊天文本字段中的预填充消息的链接,请使用https://wa.me/whatsappphonenumber/?text=urlencodedtext,其中whatsappphonenumber是国际格式的完整电话号码,而URL编码文本是URL-编码的预填充邮件。

例如:https://wa.me/15551234567?text=I'm%20interested%20in%20your%20car%20for%20sale

要创建仅包含预填消息的链接,请使用https://wa.me/?text=urlencodedtext

示例:https://wa.me/?text=I'm%20询问%20about%20the%20apartment%20listing

单击链接后,将显示您可以向其发送消息的联系人列表。

答案 1 :(得分:0)

只需访问以下网站:https://www.sharethis.com/social-media-buttons/whatsapp-share-button/

轻松注册那里的共享按钮并接受

答案 2 :(得分:0)

使用URL方案是什么?

来自WhatsApp Docu: https://faq.whatsapp.com/en/android/28000012

自定义URL方案

WhatsApp提供了一个自定义URL方案以与WhatsApp进行交互:

如果您有一个网站,并想打开一个带有预填充消息的WhatsApp聊天,则可以使用我们的自定义URL方案来进行。打开whatsapp:// send?text =,后跟要发送的文本,将打开WhatsApp,允许用户选择联系人,并用指定的文本预填充输入字段。

还可以添加其他Messenger。.

三胞胎:

threema:// compose?text = Hello

请参阅文档: https://threema.ch/de/faq/url_actions

电报:

tg:// msg?text =或

tg:// share?url = www.example.com?t = 12&text = Check%20out%20this%20url

答案 3 :(得分:0)

首先:Official Whatsapp Sharing Documentation。看一下使用WhatsApp时会发生什么,但不要指出电话号码:http://wa.me/?text=mytest。我得到结果:

我们找不到您要查找的页面

希望这不是您要分享的内容!我强烈建议使用以下格式之一,而不使用wa.me域,而使用api.whatsapp.com域:

https://api.whatsapp.com/send?text=YourShareTextHere

https://api.whatsapp.com/send?text=YourShareTextHere&phone=123

如果您有兴趣观看跟踪这些URL的项目,请访问我们!:https://github.com/bradvin/social-share-urls#whatsapp

Social Share URLs