小编典典

从Android的移动网站(不是应用程序)共享WhatsApp上的链接

html

我开发了一个主要用于手机的网站。我想允许用户直接从网页共享信息到WhatsApp。

使用UserAgent检测,我可以区分Android和iOS。 我发现,为了在iOS中实现上述功能,我可以使用URL:

href="whatsapp://send?text=http://www.example.com"

我仍在寻找OS为Android时要使用的解决方案(因为上述方法不起作用)。我想这与在Android中使用“意图”有关,但是我不知道如何将其作为href的参数。


阅读 347

收藏
2020-05-10

共1个答案

小编典典

刚在网站上看到它,现在似乎也可以在具有最新chrome和whatsapp的最新Android上使用!给链接一个新的镜头!

<a href="whatsapp://send?text=The text to share!" data-action="share/whatsapp/share">Share via Whatsapp</a>

今天(2015年4月17 日)对其进行了重新检查:在iOS 8(iPhone 6,最新版本),Android 5(Nexus 5,最新版本)上对我有效。

它也可以在Windows Phone上使用。

2020-05-10