微信受權取數據
if (!sessionStorage.getItem("islogin")) {
if (code == "" || code == undefined) {
$.ajax({
type: 'GET',
url: ''',
success: function (res) {
if (Number(res.errno) === 0) {
var state = Date.parse(new Date());
var url = `https://open.weixin.qq.com/connect/oauth2/authorize?appid=${appid}&redirect_uri=${encodeURIComponent(location.href)}&response_type=code&scope=snsapi_userinfo&state=${state}#wechat_redirect`;
document.write("<a href='" + url + "'>如您的瀏覽器沒有自動跳轉,請點擊此處手動跳轉</a>");
window.location.href = url;
}
},
error: function () {
warningTip('服務器連接失敗', 5000)
}
})
} else {
code = getSearchVal('code');
// reqData.url = window.location.href
} else {
}
複製代碼
設置分享展現
function wxConfig() {
wx.config({
debug: false, // 開啓調試模式,調用的全部api的返回值會在客戶端alert出來,若要查看傳入的參數,能夠在pc端打開,參數信息會經過log打出,僅在pc端時纔會打印。
appId: appid, // 必填,公衆號的惟一標識
timestamp: timestamp, // 必填,生成簽名的時間戳
nonceStr: nonce_str, // 必填,生成簽名的隨機串
signature: signature, // 必填,簽名
jsApiList: [
'checkJsApi',
'onMenuShareTimeline',
'onMenuShareAppMessage'
]
});
wx.ready(function () {
wx.onMenuShareTimeline({
title: '', // 分享標題
link:''',
imgUrl: '',
success: function () {
alert("分享成功")
},
cancel: function () {
// 用戶取消分享後執行的回調函數
}
});
wx.onMenuShareAppMessage({
title: '', // 分享標題
link:''',
//分享連接,該連接域名或路徑必須與當前頁面對應的公衆號JS安全域名一致
imgUrl: '', // 分享圖標
desc: '', // 分享描述
type: '', // 分享類型,music、video或link,不填默認爲link
dataUrl: '', // 若是type是music或video,則要提供數據連接,默認爲空
success: function () {
alert("分享成功")
},
cancel: function () {
// 用戶取消分享後執行的回調函數
}
});
});
}
複製代碼