如何使用移动应用程序进入 whatsapp 共享 link 工作?

How to use mobile app into whatsapp share link working?

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

此 link 在 WhatsApp 移动应用程序中失败。

这是错误信息:

ERR_UNKNOWN_URL_SCHEME

(同样的错误 => app into phone number click) 我想在前端解决这个问题。

以下代码使用 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);