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.

How can I logging as a page admin in android, like in the JS SDK? (Followed by this link: https://developers.facebook.com/docs/howtos/login/login-as-page/)

Thanks.

share|improve this question

closed as not a real question by Sam, Igy, EdChum, Lukas Knuth, birryree Dec 30 '12 at 1:42

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

1 Answer

up vote 0 down vote accepted

You should add the manage_pages permission to the ones you're requesting for the Session, and then make graph Requests as shown in the page you linked to (using the Request object).

The workflow would then be:

  1. ask the user to login (via a Session.openActiveSession, or using the login button)
  2. ask for manage_pages permissions (via a session.requestNewPublishPermissions)
  3. make a Request for "me/accounts" which should give you a list of pages the user administers
  4. show the list to the user, and ask them which page they'd like to use
  5. use that page_id to make further Requests
share|improve this answer
If I made that premission, the user have to select a page from his pages when login at first time? – Yoni92 Dec 28 '12 at 18:32
edited my answer to include a workflow. – Ming Li Dec 28 '12 at 19:26
Thank you very much! – Yoni92 Dec 29 '12 at 15:05

Not the answer you're looking for? Browse other questions tagged or ask your own question.