Search facebook fireworks by category using api chart?

Does anyone know how to search fan faker pages in a specific class using the api chart?

I am looking to find all fan pages in the automotive category and return their page IDs.

thanks

Jonathan

+4
source share
3 answers

Think I need to use a different approach and seacrh from the car manufacturer / brand. Something like this graph.facebook.com/search?q=audi&type=page

+4
source

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

The FQL page table has a category array property called categories , but to get this information you already need to know the page name or page identifier.

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

+2
source

This can be useful for others who have problems with search queries and refine the results by categorizing.

After your search query adds a space and a category name, and your search becomes 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 a category is a rather unique string. This particular search is not so flawless, but is still improving:

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

Then you need to separate the other categories manually.

+2
source

Source: https://habr.com/ru/post/1392366/


All Articles