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.

Does anyone know how to search for facebook fan pages in a specific categpry using the graph api?

I'm looking to find all fan pages in the automotive category and return their page id's.

Thanks

Jonathan

share|improve this question

3 Answers

Using the Graph API you can only get to list the pages the current user: See: http://developers.facebook.com/docs/reference/api/page/ has page category, so get a complete list of the page.

The FQL page table has a categories array property on it called categories, but to get that information you already need to know the page name or the page id.

There is no documented way to globally query the page table by category.

share|improve this answer
that's what I figured, I searched high and low. Think I need to take a different approach and seacrh by automotive maufacturer / brand. Something like this graph.facebook.com/search?q=audi&type=page – Jonathan Lyon Jan 22 '12 at 20:40
Did this answer help you to find your solution to your question, if so, please accept this answer. See meta.stackoverflow.com/questions/5234/… for how to mark answers accepted. Thank you! – DMCS Apr 17 '12 at 22:54

Think I need to take a different approach and seacrh by automotive maufacturer / brand. Something like this graph.facebook.com/search?q=audi&type=page

share|improve this answer

This may be of use to others having problems with search queries and refining results by categorization.

After your search query append a space and the category name, and your search should become more refined.

Here you will notice that only items in the Musician/Band category are returned:

http://graph.facebook.com/search?q=wilco%20musician/band&type=page

It works best when the category is a fairly unique string. This particular search is not as flawless, but still an improvement:

http://graph.facebook.com/search?q=audi%20automotive&type=page

You will then need to strip out other categories manually.

share|improve this answer

Your Answer

 
discard

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

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