vue調用用在很多場景,今天為大家介紹如何用谷歌授權登錄獲取用戶通訊錄
當前背景
業務端要求,用戶本人填寫信息,推薦到朋友,要求可以導出用戶谷歌郵箱的通訊錄,讓用戶選擇,并且回顯到頁面 ##步驟
在谷歌開發者平臺, 創建一個項目,我的理解是,我們的頁面就是這個項目,要由我們的項目,對谷歌發起授權請求,就類似微信小程序,向官方發起授權,請求昵稱和頭像的這個場景,所以,后面我們的這個項目也要通過谷歌的審核。
來到api服務
下面進入到項目管理后臺
然后要創建一個用戶憑據,拿到我們項目的id和key
配置下面的域名,也就是讓谷歌知道,用戶從哪個域名發起請求事合理的,可以用本地localhost進行測試。提醒注冊不能用局域網IP。
然后在API庫中,選擇我們要用的API,我的需求是獲取通訊錄,所以我啟用了people API。
這樣就會在API庫里,都會有用法和說明,我是自己去他的git上拉取的,看了下代碼流程,然后自己改動,git上的代碼很簡潔
OAuth 同意屏幕 就是我們的應用在授權時,會跳出如下的界面
以上屏幕就是統一,假如我們的應用沒有通過谷歌的驗證,那出現的提示就會以應用不安裝。
想要通過,看看下面官方流程:
一般在開發的時候,只是發布到正式了,沒通過就是了。在開發環境沒問題。
這樣就可以拿到數據。 以下全部的代碼
// 初始化谷歌授權登錄 initClient() { // Client ID and API key from the Developer Console let CLIENT_ID = '你申請的ID', API_KEY = '你申請的密碼', // Array of API discovery doc URLs for APIs used by the quickstart DISCOVERY_DOCS = [ 'https://www.googleapis.com/discovery/v1/apis/people/v1/rest', ], // Authorization scopes required by the API; multiple scopes can be // included, separated by spaces. SCOPES = 'https://www.googleapis.com/auth/contacts.readonly', authorizeButton = document.getElementById('authorize_button'), that = this gapi.client .init({ // apiKey: API_KEY, clientId: CLIENT_ID, discoveryDocs: DISCOVERY_DOCS, scope: SCOPES, }) .then( function () { console.log('谷歌登錄初始化成功') // Listen for sign-in state changes. gapi.auth2 .getAuthInstance() .isSignedIn.listen(that.updateSigninStatus) // Handle the initial sign-in state. // that.updateSigninStatus( // gapi.auth2.getAuthInstance().isSignedIn.get() // ) authorizeButton.onclick = that.handleAuthClick }, function (error) { console.log(error) // appendPre(JSON.stringify(error, null, 2)) } ) }, /** * Called when the signed in status changes, to update the UI * appropriately. After a sign-in, the API is called. */ updateSigninStatus(isSignedIn) { // 是否登錄 if (isSignedIn) { console.log('已登錄') this.listConnectionNames() } else { console.log('未登錄') } }, /** * Sign in the user upon button click. */ handleAuthClick() { // 是否登錄 let flag = gapi.auth2.getAuthInstance().isSignedIn.get() if (flag) { // 如果已經登錄,就直接彈出窗口 this.listConnectionNames() } else { // 未登錄就調用出登錄授權 gapi.auth2.getAuthInstance().signIn() } }, /** * Sign out the user upon button click. */ handleSignoutClick(event) { gapi.auth2.getAuthInstance().signOut() }, listConnectionNames() { let peopleMsg = [], that = this gapi.client.people.people.connections .list({ resourceName: 'people/me', pageSize: 100, personFields: 'names,emailAddresses', }) .then(function (response) { var connections = response.result.connections if (connections.length > 0) { for (let i = 0; i < connections.length; i++) { var person = connections[i] if (person.names && person.emailAddresses) { let obj = { name: person.names[0].displayName, email: person.emailAddresses[0].value, id: i, } peopleMsg.push(obj) } } } else { that.$message({ message: 'No connections found.', type: 'warning', }) } that.peopleMsg = peopleMsg that.popDialog(peopleMsg) }) .catch((err) => { console.log(err) }) }, // 在mounted的時候初始化一下窗口 mounted() { // 谷歌登錄授權初始化 gapi.load('client:auth2', that.initClient) },
以上就是關于用vue調用谷歌授權登錄獲取用戶通訊錄的實現的敘述。
文章版權歸作者所有,未經允許請勿轉載,若此文章存在違規行為,您可以聯系管理員刪除。
轉載請注明本文地址:http://specialneedsforspecialkids.com/yun/127617.html
摘要:傳統的網頁編程采用的三劍客來實現,在微信小程序中同樣有三劍客。觀察者模式不難實現,重點是如何在微信小程序中搭配其特有的生命周期來使用。交互事件傳統的事件傳遞類型有冒泡型與捕獲型,微信小程序中自然也有。 本文由作者鄒永勝授權網易云社區發布。 簡介為了更好的展示我們即時通訊SDK強悍的能力,網易云信IM SDK微信小程序DEMO的開發就提上了日程。用產品的話說就是: 云信 IM 小程序 S...
摘要:參數格式為,其中為,僅支持一層字典否調用成功的回調函數否調用失敗的回調函數否調用結束的回調函數調用成功失敗都會執行警告框。 概述 OpenApp+ 一個小程序容器,配置簡單、功能完善、界面流暢、開箱即用!使用OpenApp+可以快速擴展你的APP,使其擁有與微信一樣的功能擴展可能,讓App的所有的功能都通過小程序來實現,動態更新,更快的響應用戶需求。其擁有的管理具備版本管理功能,讓功能...
摘要:請欣賞手把手教程后端博客系統文章系統掘金本期主要是文章保存功能,涉及到草稿文章發布歷史這三個要點。一談談連接管理后端掘金連接管理概述最近重讀了權威指南部分章節,結合來對部分內容進行印證并記錄下來。 Spring Boot干貨系列:(四)開發Web應用之Thymeleaf篇 | 掘金技術征文 - 掘金原文地址:Spring Boot干貨系列:(四)開發Web應用之Thymeleaf篇博客...
閱讀 547·2023-03-27 18:33
閱讀 732·2023-03-26 17:27
閱讀 630·2023-03-26 17:14
閱讀 591·2023-03-17 21:13
閱讀 520·2023-03-17 08:28
閱讀 1801·2023-02-27 22:32
閱讀 1292·2023-02-27 22:27
閱讀 2177·2023-01-20 08:28