FQL:friendlist_member
From Facebook Developer Wiki (FbDevWiki.com)
Query this table to determine which users are members of a friend list. You can run this query only when the flid
is owned by the logged-in user. You cannot expose this information to anyone but the logged-in user, as it is private.
Columns
Highlighted rows are indexable / searchable and one is usually required in the WHERE portion of the query.
Name | Type | Description |
---|---|---|
flid | int | The ID of the friend list. |
uid | int | The user ID of the friend list member. |
Examples
SELECT flid,uid FROM friendlist_member WHERE flid IN (SELECT flid FROM friendlist WHERE owner=204686)