http://developers.facebook.com/docs/reference/api/FriendList/
Facebookの友達リスト

目次:

Example

https://graph.facebook.com/me/friendlists (Your friend lists)

Properties

NameDescriptionPermissionsReturns
id

友達リストのID

read_friendlistパーミッションが必須

JSON string


name

友達リストの名前

read_friendlistパーミッションが必須

JSON string


Connections

NameDescriptionPermissionsReturns
members

そのリストに登録されている全ユーザ

公開

friend id,nameフィールドを含むJSONオブジェクトの配列

Publishing

manage_friendlistsパーミッションが必須です。


https://graph.facebook.com/[User ID]/friendslists?name=[FriendList Name]へPOSTリクエストを送信することで、新しい友達リストを作成することができます。リストに対してメンバーを追加するには、https://graph.facebook.com/[FriendList ID]/members/[USER ID]に対してPOSTリクエストを送ります。

https://graph.facebook.com/[FriendList ID]へDELETEリクエストを送信することでリストを削除できます。リストから特定メンバーを削除するには、DELETEリクエストをhttps://graph.facebook.com/[FriendList ID]/members/[USER ID]へ送ります。


curl -F 'access_token=...' \
https://graph.facebook.com/me/friendlists?name=old-school-friends