我有以下命令,可以让我在登录用户的 Facebook 墙上发布消息:
$facebook->api("/$uid/feed", "POST", array('message' => 'Hello! I\'m using the FB Graph API!'));
即使用网址https://graph.facebook.com/<user id goes here>/feed
但是我需要输入什么命令来获取登录用户朋友的列表?
我需要使用的 url 是https://graph.facebook.com/me/friends
,但我不确定如何编辑以下命令来获取好友列表:
$facebook->api("/$uid/feed", "POST", array('message' => 'Hello! I\'m using the FB Graph API!'));
我应该做这样的事情吗(这是一个完整的猜测)
$facebook->api("/$uid/friends", "GET", array('access_token' => 'token value goes here'));
还是我应该做其他事情来获取朋友列表?