Is there a way i can get access to a user's contact groups using the Gmail oAuth alone? I know it is possible to do using the google contacts API, but i am already using the gmail oAuth so i dont want the user to have to authenticate contacts api separately.
Asked
Active
Viewed 930 times
1
-
The answer to the question [here](http://stackoverflow.com/questions/16994877/how-do-i-get-gmail-contacts-using-javascript/18731979#18731979) might help [1]: – Guilherme Sep 11 '13 at 03:08
1 Answers
0
hmmm now i;m thinking that you could just oauth into both contacts and gmail of them somehow specifying a double scope parameter... or just writing the program to do one after another.

benjaminlotan
- 169
- 2
- 8
-
Add both scopes into a string and use that in the scopes entry when getting the authorization - that way the user only authorizes once but is asked if they can authorize both the Gmail and contacts. – Paul S Chapman Feb 20 '14 at 22:08