ThinkChat🤖让你学习和工作更高效,注册即送10W Token,即刻开启你的AI之旅 广告
**BSL.ShareMultiImage('data','descript')** 多图分享到微信好友或朋友圈。 ***注***:安卓版微信以封此接口无法在使用。2019-1-20 | 参数 |必填 |说明 | | --- | --- | --- | | data| 是 | 字符串数组,最少两个字符串。字符串内容为图片网址。 | | descript| 是 | 分享描述。 | ``` <script> function SharedImg(){ var data = ["http://www.appbsl.cn/demo/img/share1.png", "http://www.appbsl.cn/demo/img/share2.png", "http://www.appbsl.cn/demo/img/share3.png", "http://www.appbsl.cn/demo/img/share4.png"]; var descript = '分享的描述'; BSL.ShareMultiImage(data,descript); } </script> <a href="#" onclick="BSL.SharedImg()">分享</a> //多图分享非官方提供接口,可不申请权限。同样也没有回调。 ```