任何人都可以解釋我在GoogleApiClient中做什麼。範圍在GoogleApiClient中做什麼?
new GoogleApiClient.Builder(this)
.addConnectionCallbacks(this)
.addOnConnectionFailedListener(this)
.addApi(Plus.API)
.addScope(Plus.SCOPE_PLUS_LOGIN)// what really does this?
.build();
任何人都可以解釋我在GoogleApiClient中做什麼。範圍在GoogleApiClient中做什麼?
new GoogleApiClient.Builder(this)
.addConnectionCallbacks(this)
.addOnConnectionFailedListener(this)
.addApi(Plus.API)
.addScope(Plus.SCOPE_PLUS_LOGIN)// what really does this?
.build();
作用域定義了您需要執行所需操作的權限。
如果應用程序需要從用戶的谷歌驅動器帳戶讀取,那麼你會要求https://www.googleapis.com/auth/drive.readonly,授予你「read-only access to file metadata and file content
」但是如果你需要能夠上傳到谷歌驅動器,你可能要問了https://www.googleapis.com/auth/drive哪些授予"Full, permissive scope to access all of a user's files."
範圍定義授予應用程序的訪問範圍。
範圍問題Plus.loginhttps://www.googleapis.com/auth/plus.login
這是推薦的登錄範圍提供獲得社會 功能。此範圍隱含了輪廓範圍也 請求你的應用程序被給予訪問:
*的 認證用戶
*用戶已 授予盤旋人列表中選擇您的應用程序訪問的年齡範圍知道
*的用於閱讀,書寫和 刪除應用程序活動(時刻)代表用戶
谷歌 此外,此範圍啓用跨平臺單一登錄。
作用域是字符串,使訪問特定資源,如 用戶數據。
請參閱doc和scopes summary。
儘管這個鏈接可能回答這個問題,但最好在這裏包含答案的基本部分,並提供參考鏈接。如果鏈接頁面更改,則僅鏈接答案可能會失效。 - [來自評論](/ review/low-quality-posts/10400941) – MrEngineer13
@ MrEngineer13謝謝!我將來會把這個留在腦海裏。 – csenga