不依赖任何第三方网站,自己动手实现自定义的分享
比如管理员已开启群交易
原理:
对于分享内容,QQ会读取网站的meta并展示出来
举个例子,访问 http://connect.qq.com/w...oecraft.net/ 就可以分享截图所示的内容了。
https://connect.qq.com/widget/shareqq/index.html?url=https://accounts.moecraft.net/jiaoyi.html&desc=&title=%E7%AE%A1%E7%90%86%E5%91%98%E5%B7%B2%E5%BC%80%E5%90%AF%E7%BE%A4%E4%BA%A4%E6%98%93&summary=%E6%94%AF%E4%BB%98%E5%AE%9D%E8%BD%AC%E8%B4%A6%E5%88%B0771644051@qq.com%E5%8D%B3%E5%8F%AF%E5%8F%82%E4%B8%8E%E4%BA%A4%E6%98%93&pics=https://accounts.moecraft.net/Public/img/donate-alipay.jpg&site=https://accounts.moecraft.net/
有兴趣可以去研究下QQ分享组件(点我)
动手实现
1.准备一个HTML页面
<!DOCTYPE html>
<html>
<head>
<meta http-equiv=”Content-Type” content=”text/html; charset=UTF-8”>
<meta charset=”utf-8”>
<meta name=”description” itemprop=”description” content=”主要内容”>
<meta itemprop=”name” content=”标题”>
</head>
</html>
然后保存这个页面到你的网站(编码:UTF-8无BOM),记住URL
2.构造分享网址
以下是参数说明:
http://connect.qq.com/widget/shareqq/index.html?url=刚才的URL&desc=&title=标题&summary=主要内容&pics=左侧图片网址&site=左下角字符
注意:所有你填写的内容都需要进行URL编码(urlencode)
比如文章开头的群交易
3.访问这个你写好的地址
分享给你的好友或者群
本文共 242 个字数,平均阅读时长 ≈ 1分钟
评论 (0)