vue獲取微博授權URL
1.在Vue**頁面載入時動態傳送請求獲取微博授權url
1.1 在 components\common\lab_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>
相關文章
- 微信授權獲取使用者的openid
- 前端實現微信公眾號授權—獲取openid前端
- 「新手上路」Go 微博授權登入Go
- 微信網頁授權並獲取使用者資訊網頁
- vue 微信授權解決方案Vue
- vue-router獲取url傳參Vue
- 微信小程式授權登入獲取使用者資訊微信小程式
- 微信開發之小程式獲取手機號授權登入
- 微信授權後獲取使用者頭像儲存到伺服器伺服器
- qq郵箱授權碼如何獲取 QQ郵箱授權碼怎麼弄
- 微信授權註冊或微信登陸 微信授權登陸 基於若依vue 實現Vue
- 獲取URL地址
- 一張圖清晰解釋微信三方平臺獲取授權流程
- ThinkPHP5-微信小程式獲取使用者授權登入資訊PHP微信小程式
- 前端微信授權前端
- .NET微信網頁開發之網頁授權獲取使用者基本資訊網頁
- 微信授權管理功能
- 微信裡的”授權“
- 微信授權(Net Mvc)MVC
- 微信授權登入
- 微信小程式——授權微信小程式
- 微信網頁授權網頁
- Vue微信專案按需授權登入策略實踐Vue
- Android 第三方登入之新浪微博授權登入Android
- app直播原始碼,Vue獲取URL圖片的寬高APP原始碼Vue
- 企業微信-自建H5應用授權登入獲取使用者資訊H5
- 記一次微信網頁授權後獲取使用者資訊並重定向網頁
- PHP基於laravel框架獲取微博資料之一 模擬新浪微博登入PHPLaravel框架
- js獲取url傳遞引數,js獲取url?號後面的引數JS
- 騰訊微博 android "授權失敗,請稍候重試:錯誤碼:308”Android
- 直播軟體原始碼,Vue獲取URL圖片的寬高原始碼Vue
- URL引數獲取/轉碼
- 獲取url上的引數
- 封裝getParam方法 ,獲取URL封裝
- Python實現微博爬蟲,爬取新浪微博Python爬蟲
- Auth 授權的異常捕獲
- 小程式獲取使用者位置資訊後再次手動授權
- 支付寶小程式(後臺)---獲取授權和使用者資訊