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
|
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 |
|||
|
|
|
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 There is no documented way to globally query the page table by category. |
|||||
|
|
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 |
|||
|
|
|
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:
It works best when the category is a fairly unique string. This particular search is not as flawless, but still an improvement:
You will then need to strip out other categories manually. |
|||
|
|