收藏
回答

redirect_uri 参数错误?

AppID
wxef571c309f0f3841
const replaceUrl = ()=> {
  const params = {
    appid: 'wxef571c309f0f3841',
    // redirect_uri: encodeURIComponent('https://2330290qr8.zicp.fun'),
    redirect_uri: encodeURIComponent('http://192.168.31.210:10086'),
    response_type: "code",
    scope: 'snsapi_userinfo',
    state: '11111'
  }
  window.location.href = `https://open.weixin.qq.com/connect/oauth2/authorize?${qs.stringify(params)}#wechat_redirect`;
}

请问这么填有什么问题?始终报错uri参数错误;

上面注释的内网穿透地址也不行


生成的地址:https://open.weixin.qq.com/connect/oauth2/authorize?appid=wxef571c309f0f3841&redirect_uri=http%253A%252F%252F192.168.31.210%253A10086&response_type=code&scope=snsapi_userinfo&state=11111#wechat_redirect


最后一次编辑于  11-30
回答关注问题邀请回答
收藏

1 个回答

  • 风潇水寒🦐
    风潇水寒🦐
    11-30

    知道了,qs.stringify的时候本身就会encode

    11-30
    有用
    回复
登录 后发表内容