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.

We are building the application which allows venue owners to send specific messages to their customers through the Android apps. One challenge is the process of venue owner verification (the DB of venues is crowdsourced), and we are on the track to find the best and easiest way of doing the verification.

So, the task is:

  1. we know the venue name and its address
  2. we know the venue ID on Facebook (Venue facebook page reference)

The question is: Is there any FB API which allows us to verify whether user is the owner of specific FB page or not?

For example, the process will be following:

  • venue owner goes to our site
  • venue owner searches for his venue
  • venue owner connects to FB
  • we are verifying whether he manages the page connected to this venue
share|improve this question
Sorry, accidentally voted to close - had wrong tab open – Igy Oct 5 '12 at 16:37

closed as not a real question by Igy, ЯegDwight, Monolo, Mathieu Imbert, owlstead Oct 6 '12 at 1:19

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

When you get the manage_pages permission from a user you can access a list of the pages they admin at /<user id>/accounts - this is the only way to check if a user is the admin of a specific page unless your app is being accessed as a tab on that page.

In that case, the signed_request sent with the tab loads contains a page element telling you if the current users likes / is an admin of the page, as well as the page ID

share|improve this answer
Thanks, Igy. This is exactly what I'm looking for. – hrmcd Oct 5 '12 at 23:32

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