summaryrefslogtreecommitdiffstats
path: root/docs
diff options
context:
space:
mode:
authorRobert Ly <robertly@google.com>2013-01-18 13:33:25 -0800
committerRobert Ly <robertly@google.com>2013-01-18 13:33:25 -0800
commit4efe071ed66c4ba34c3829afd44b43bcb6b51b7b (patch)
tree5bf02047b8d49befc39f49a3f5b7497228429fa4 /docs
parent548e17dfdbd862cdfc663268a6d67b47f42b9544 (diff)
downloadframeworks_base-4efe071ed66c4ba34c3829afd44b43bcb6b51b7b.zip
frameworks_base-4efe071ed66c4ba34c3829afd44b43bcb6b51b7b.tar.gz
frameworks_base-4efe071ed66c4ba34c3829afd44b43bcb6b51b7b.tar.bz2
docs: update auth doc to mention multiple scopes bug 7644251
Change-Id: I7f0c2e822c306161ae02b11439e5e0095463bcff
Diffstat (limited to 'docs')
-rw-r--r--docs/html/google/play-services/auth.jd8
1 files changed, 7 insertions, 1 deletions
diff --git a/docs/html/google/play-services/auth.jd b/docs/html/google/play-services/auth.jd
index 3f46c3f..8e11131 100644
--- a/docs/html/google/play-services/auth.jd
+++ b/docs/html/google/play-services/auth.jd
@@ -57,7 +57,12 @@ private String[] getAccountNames() {
</pre>
<h2 id="obtain">Obtaining an Access Token</h2>
<p>
- With an email address, you can now obtain an access token. There are two general
+ With an email address and the service scope you can now obtain an access token.
+</p>
+<p class="note"><strong>Note:</strong> Specify <code>"oauth2:<em>scope</em>"</code> for a single scope or
+ <code>"oauth2:<em>scope1</em> <em>scope2</em> <em>scope3</em>"</code> for multiple scopes.</p>
+
+There are two general
ways to get a token:</p>
<ul>
@@ -73,6 +78,7 @@ private String[] getAccountNames() {
<h3>Using getToken()</h3>
The following code snippet obtains an access token with an email address, the scope that you want to use for the service, and a {@link android.content.Context}:
+
<pre>
HelloActivity mActivity;
String mEmail;