【问题标题】:How to use mobile app into whatsapp share link working?如何使用移动应用程序进入whatsapp共享链接工作?
【发布时间】:2018-07-31 16:20:19
【问题描述】:

如何使用 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

(同样的错误 => 应用到电话号码点击) 我想在前端解决这个问题。

【问题讨论】:

  • 您想分享文字或图片还是只想打开 Whatsapp?
  • 我要打开文字,点击app中的链接,打开whatsapp

标签: android node.js mobile whatsapp


【解决方案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);

【讨论】:

  • 这个问题解决方案后端吗?(android)
  • @korkut 不,您已在 Android 应用中输入此代码。
猜你喜欢
  • 1970-01-01
  • 2014-03-23
  • 1970-01-01
  • 2013-10-03
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
  • 2013-05-17
相关资源
最近更新 更多