http://developers.facebook.com/docs/reference/api/FriendList/
Facebookの友達リスト
目次:
Facebookの友達リスト
目次:
Example
https://graph.facebook.com/me/friendlists (Your friend lists)
Properties
Name | Description | Permissions | Returns |
id | 友達リストのID |
| JSON string |
name | 友達リストの名前 |
| JSON string |
Connections
Name | Description | Permissions | Returns |
members | そのリストに登録されている全ユーザ | 公開 |
|
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