Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm currently succeeding in requesting access to multiple applications using AccountManager on Android but only by using an ugly authTokenType:

public static final String AUTHENTICATION_TOKEN_TYPE = "oauth2:https://www.google.com/m8/feeds/ https://www.google.com/calendar/feeds/ https://www.googleapis.com/auth/tasks";

When my users are brought to the allow access page, it shows that ugly string above.

I want to be able to do something akin to:

public static final String AUTHENTICATION_TOKEN_TYPE = "Manage your calendars, Manage your tasks, Manage your contacts";

However, doing this leads to an error (it's combining them into one permission which doesn't exist).

How can this be done?

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.