我正在寻找像whatsapp一样的微信共享功能。
href="whatsapp://send?text=http://www.example.com"
根据我的研究,他们中的大多数将以QR码编码并使用微信扫描仪扫描QR码。有没有办法在点击分享按钮时直接与朋友分享文字,就像whatsapp一样?
答案 0 :(得分:1)
微信没有任何官方深层链接网址来发送文字。但是,如果您可以在移动网络中添加一些JavaScript代码,则可以实现共享功能。
查看有关Wechat JS SDK的Send to chat
文档。
wx.onMenuShareAppMessage({
title: '', // Sharing title
desc: '', // Sharing description
link: '', // Sharing link
imgUrl: '', // Sharing image URL
type: '', // Sharing type, such as “music”, “video “ or “link”. It is “link” by default.
dataUrl: '', // The data URL should be provided for items of type “music” or “video”. It is null by default.
success: function () {
// Callback function executed after a user confirms sharing
},
cancel: function () {
// Callback function executed after a user cancels sharing
}
});
我们确实有一些像您提到的非官方深层链接网址。但如果Wechat决定改变它,它可能随时停止工作。
以下是其中一些内容,遗憾的是我不知道任何可以分享文字进行聊天的网址。
weixin://
- 打开微信应用(如果已安装)weixin://dl/chat
- 打开微信聊天屏幕weixin://dl/moments
- 打开用户moements weixin://dl/profile
- 打开用户个人资料weixin://dl/settings
- 打开设置页面