Page fan (FQL)

From Facebook Developer Wiki

Revision as of 23:39, 9 September 2008 by Ray C. He (Talk | contribs)
(diff) ←Older revision | Current revision (diff) | Newer revision→ (diff)
Jump to: navigation, search


Description

The FQL page_fan table. Query this table to return information about the fan of a Facebook Page.

To structure your query, use the table name (page_fan in this case) in the FROM clause. The items in the Name column correspond to columns in the table that can be referenced in the SELECT and WHERE clauses.

In order to make your query indexable, the WHERE in your query should contain an = or IN clause for the uid column.

The See Also section lists API functions that work on similar data; their documentation pages contain additional information about the contents of the column and example FQL queries.

Columns

IndexableNameTypeDescription
* uid int The user ID for the fan of the Page being queried.
page_id int The ID of the Page being queried.
type string The type of Page being queried.

See Also

reference