微信获取权限

微信授权两种模式

静默模式,非静默模式!

1.静默模式:

          在进入页面后,不需要客户点击同意,直接获取到用户的openid!但是无法获取到用户其他信息头像,昵称等!只能获取openid!

let uri = 'https://open.weixin.qq.com/connect/oauth2/authorize?appid=' +                 
          this.$store.state.appId +
          '&redirect_uri='+ encodeURIComponent(window.location.href) +
          '&response_type=code&scope=snsapi_base&state=123&connect_redirect=1' +
          '&component_appid=' + this.$store.state.component_appid + '#wechat_redirect';

2.非静默模式:

         需要用户点击同意,获取到用户相应开放的一些信息头像,昵称,openId!

let uri = 'https://open.weixin.qq.com/connect/oauth2/authorize?appid=' + 
          this.$store.state.appId +
          '&redirect_uri='+ encodeURIComponent(window.location.href) +
          '&response_type=code&scope=snsapi_userinfo&state=123&connect_redirect=1' +
          '&component_appid=' + this.$store.state.component_appid + '#wechat_redirect';

总结:

   之前在做项目时候查找过相关信息,有个文章危言耸听;说静默模式被取消了;微信既然开发这种模式;没有特殊原因是不会取消掉的;

他俩就是scope的参数不同  静默 snsapi_base     非静默  snsapi_userinfo

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值