2019-01-18

微信JSSDK自定义分享

这篇文章主要分为3部分:
第一部分:开发步骤
第二部分:本公司内部如何快速的引用方法
第三部分:程序中的功能点
第四部分:注意事项

开发步骤

参考:
https://blog.csdn.net/qq_33556185/article/details/79628987
微信JS-SDK说明文档

快速引入共用的分享方法


全部代码




    
        
        
        
        
        
        分享
        
        
    
    
        

分享测试页面

程序中的功能点

1.微信OAuth2.0网页授权只能设置一个回调域名的解决方法。
参考:(https://blog.csdn.net/wulex/article/details/73611503)
公司已授权域名:http://dm.jjlg.com.cn/auth/get-weixin-code.html
2.静默授权获取code。
3.自定义分享给朋友和朋友圈。

//通过get-weixin-code.html页面进行二次跳转
window.location.href = "http://dm.jjlg.com.cn/auth/get-weixin-code.html?appid=wxc67e9116a939063c&scope=snsapi_base&redirect_uri=" + encodeURIComponent(sharelink);

注意事项

1.重定向地址一定要用encodeURIComponent()进行编码,否则url中的=和+都会在编译的过程丢失。
2.页面头部记得引入js文件:


你可能感兴趣的:(2019-01-18)