I am using facebook graph Api for my application where i want the data of this page.
http://www.facebook.com/pages/
In this page there is option TV SHOW I want collect all information of that page.
But i didn’t any graph api method for this page.
Please help me for this problem.
As far as I can tell, this isn’t something you can do. It has to do with what Facebook sets as “indexable” columns in their tables. For example, the
pagetable has atypeID and the TV SHOWS category ID appears to be 89, so you’d think you could run a FQL query such as:or perhaps:
But you’ll get this notice:
Unfortunately, the only two indexable columns for WHERE statements using the
pagetable arepage_idandname. So you can only query this table for one page at a time. Which makes sense when you consider how expensive a search like that would be on billions of records.You can do a generic graph search for “TV SHOWS” but it won’t give the the results on the page index as you requested:
The Graph API is more about introspection/connections between objects than an open search protocol.