Reputation: 41
I want to get user's email address and user contacts through Google OAuth. I have the respective SCOPE urls for both APIs. But how to pass them in one go?
Upvotes: 0
Views: 3183
Reputation: 113
If you are doing it programmatically , in the examples I saw ,usually you should pass an array of strings where each string represents one scope. If you are doing it via HTTP GET/POST request - just concatenate your scopes with a "+" sign. like:
Upvotes: 4