我正在使用 facebook php sdk 3.2 我正在使用 url "https://graph.facebook.com/user_id/albums?access_token=token 来获取用户的所有相册。但对于某些用户来说,它给出了空白结果,例如
{
"data": [
]
}
为什么会发生这种情况,我如何获取用户的所有相册?
我正在使用的代码是
$this->facebook=new Facebook(array(
'appId' => $appId,
'secret' => $appSecret,
'cookie' => true
));
if(is_null($this->facebook->getUser()) || $this->facebook->getUser()==0)
$this->askForLogin();
$this->accessToken = $this->facebook->getAccessToken();
$feedURL = "https://graph.facebook.com/".$this->facebook->getUser()."/albums?access_token=".$this->accessToken;
$albumData = file_get_contents($feedURL);