0

我想将状态发布到特定的朋友列表(例如“家人”或“最好的朋友”)。我可以使用 FB API 获取好友列表的 ID,但在发布状态时我看不到使用此 ID 的方法。

有了一个组,我可以发布到组 ID (https://graph.facebook.com/groupID/feed)。但这似乎不适用于朋友列表。

4

1 回答 1

1

这似乎可以解决问题:

curl -F 'access_token=your_access_token' -F 'message=your_message' -F \
  "privacy={'value':'CUSTOM','friends':'SOME_FRIENDS','allow':'your_list'}" \
  https://graph.facebook.com/your_id/feed
于 2012-05-13T18:09:47.960 回答