04.vue获取微博授权URL

Posted shensy

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了04.vue获取微博授权URL相关的知识,希望对你有一定的参考价值。

1.在Vue页面加载时动态发送请求获取微博授权url

1.1 在 componentscommonlab_header.vue 中写oauth动态获取微

博授权URL

 // 获取微博登录地址
    oauth() {
      // 从后端获取 微博登录地址
      oauth_post().then((resp) => {
        console.log(resp)
        //{‘code‘: ‘0‘, ‘msg‘: ‘成功‘, ‘data‘: {‘url‘: url}}
        let url = resp.data.url;
        this.weibo_url = url;
      })

    },

1.2 在vue的mounted函数中调用获取微博授权url函数

mounted() { 
    this.oauth() 
}

1.3 点击"登录"弹出的form表单中加入url

<form 
    action="/login" 
    method="post" 
> 
    <div class="form-group widget-signin"> 
    <a :href="weibo_url"><i class="fa fa-weibo"></i></a> 
    </div> 
</form>

 

以上是关于04.vue获取微博授权URL的主要内容,如果未能解决你的问题,请参考以下文章

微博三方登录

三方登录

使用新浪微博开放平台请求授权登录(获取接口及创建应用过程)

Python web 开发微博授权登录,获取用户info 信息

生成微博授权URL及回调地址

Python web 开发第三方登录微博授权 测试