小程序
小游戏
企业微信
微信支付
扫描小程序码分享
我在wx.config成功后调用agentConfig,出现可信域名不正确端问题。可是为啥我wx.config就没有出现可信域名不正确的问题?
1 个回答
加粗
标红
插入代码
插入链接
插入图片
上传视频
在js里先调用 wx.config
wx.config通过后,再通过 wx.ready 调用 wx.agentConfig
注意wx.config和wx.agentConfig不一样
对应的签名也不一样
wx.config({ beta: true, debug: false, appId: '{$appId}', timestamp:{$timestamp} , nonceStr: '{$nonceStr}', signature: '{$signature}',//注意签名 jsApiList: ['agentConfig'] //在这里调用 agentConfig }); wx.ready(function(){ //在wx.ready里执行wx.agentConfig wx.agentConfig({ corpid: '{$appId}', agentid: '{$agentid}', timestamp:{$timestamp} , nonceStr: '{$nonceStr}', signature: '{$signature_qy}', //注意签名 jsApiList: [ 'shareWechatMessage', 'shareAppMessage', 'shareToExternalContact', 'getCurExternalContact', 'sendChatMessage' ], success: function(res) { }, fail: function(res) { if(res.errMsg.indexOf('function not exist') > -1){ alert('版本过低请升级') } } }); });
两个签名是不一样的,切记!
你好,麻烦通过点击下方“反馈信息”按钮,提供出现问题的。
关注后,可在微信内接收相应的重要提醒。
请使用微信扫描二维码关注 “微信开放社区” 公众号
在js里先调用 wx.config
wx.config通过后,再通过 wx.ready 调用 wx.agentConfig
注意wx.config和wx.agentConfig不一样
对应的签名也不一样
wx.config({ beta: true, debug: false, appId: '{$appId}', timestamp:{$timestamp} , nonceStr: '{$nonceStr}', signature: '{$signature}',//注意签名 jsApiList: ['agentConfig'] //在这里调用 agentConfig }); wx.ready(function(){ //在wx.ready里执行wx.agentConfig wx.agentConfig({ corpid: '{$appId}', agentid: '{$agentid}', timestamp:{$timestamp} , nonceStr: '{$nonceStr}', signature: '{$signature_qy}', //注意签名 jsApiList: [ 'shareWechatMessage', 'shareAppMessage', 'shareToExternalContact', 'getCurExternalContact', 'sendChatMessage' ], success: function(res) { }, fail: function(res) { if(res.errMsg.indexOf('function not exist') > -1){ alert('版本过低请升级') } } }); });
两个签名是不一样的,切记!