小程序
小游戏
企业微信
微信支付
扫描小程序码分享
如图:
https://api.weixin.qq.com 这个域名不是腾讯的吗,还需要配置在微信小程序后台?
3 个回答
加粗
标红
插入代码
插入链接
插入图片
上传视频
在服务器完成。
你好,麻烦通过点击下方“反馈信息”按钮,提供出现问题的。
能提供一个例子吗
我现在是想通过该接口来获取openid,如果这样不允许的话,我该如何获取openid:
getopenid:function(){ //获取openid
var that = this;
wx.login({
success: function (res) {
var d = that.globalData;//这里存储了appid、secret、token串
var url = 'https://api.weixin.qq.com/sns/jscode2session?appid=' + d.appid + '&secret=' + d.secret + '&js_code=' + res.code + '&grant_type=authorization_code';
wx.request({
url: url,
method: 'GET',
that.globalData.openid = res.data.openid;
}
});//对应wx.request
} //对应success
}); //对应wx.login
},
关注后,可在微信内接收相应的重要提醒。
请使用微信扫描二维码关注 “微信开放社区” 公众号
在服务器完成。
能提供一个例子吗
我现在是想通过该接口来获取openid,如果这样不允许的话,我该如何获取openid:
getopenid:function(){ //获取openid
var that = this;
wx.login({
success: function (res) {
var d = that.globalData;//这里存储了appid、secret、token串
var url = 'https://api.weixin.qq.com/sns/jscode2session?appid=' + d.appid + '&secret=' + d.secret + '&js_code=' + res.code + '&grant_type=authorization_code';
wx.request({
url: url,
method: 'GET',
success: function (res) {
that.globalData.openid = res.data.openid;
}
});//对应wx.request
} //对应success
}); //对应wx.login
},