如何使用移动应用程序到whatsapp共享链接中工作?

时间:2018-07-31 07:27:00

标签: android node.js mobile whatsapp

如何使用HTML链接在移动应用程序上打开whatsapp?此链接在网站上有效示例链接:<a href="whatsapp://send?text=https%3A%2F%2Fstackoverflow.com%2Fquestions%2F51533526%2Fhow-to-use-html-link-into-whatsapp-mobile-app%2F51533716%3Fnoredirect%3D1">Whatsapp Share </a>

WhatsApp移动应用程序中的此链接失败。

这是错误消息:

  

ERR_UNKNOWN_URL_SCHEME

(相同错误=>应用插入电话号码) 我想在前端解决这个问题。

1 个答案:

答案 0 :(得分:1)

下面的代码使用Intent将文本直接共享到Whatsapp应用。

Intent textIntent = new Intent(Intent.ACTION_SEND);
textIntent.setType("text/plain");
textIntent.setPackage("com.whatsapp");
textIntent.putExtra(Intent.EXTRA_TEXT, "Your text here");
startActivity(textIntent);