收藏
回答

提示:​https://api.weixin.qq.com不在以下合法域名列表中

如图:


https://api.weixin.qq.com 这个域名不是腾讯的吗,还需要配置在微信小程序后台?

回答关注问题邀请回答
收藏

3 个回答

  • 晨
    2017-07-13

    在服务器完成。

    2017-07-13
    有用
    回复
  • A容凯轩
    A容凯轩
    2017-07-13

    能提供一个例子吗

    2017-07-13
    有用
    回复
  • A容凯轩
    A容凯轩
    2017-07-13

    我现在是想通过该接口来获取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


     },


    2017-07-13
    有用
    回复
登录 后发表内容