照片隐私 - Facebook Graph API

时间:2015-08-07 15:06:43

标签: php facebook facebook-graph-api facebook-php-sdk

我正在尝试阅读用户使用我的应用发布的Facebook照片的隐私设置。

documentation for the privacy node上,它说照片会返回包含隐私信息的字段,但在documentation for the photo node上,privacy不在字段列表中,所以当我尝试添加时在我的字段列表中,我得到以下内容:

{
  "error": {
    "message": "(#100) Tried accessing nonexisting field (privacy) on node type (Photo)",
    "type": "OAuthException",
    "code": 100
  }
}

有什么想法吗?这是我的代码:

$fbSession = new FacebookSession(ACCESS_TOKEN);

// Request photo info
$photoRequest = (new FacebookRequest(
    $fbSession,
    'GET',
    '/' . ID_PHOTO_FACEBOOK,
    ['fields' => 'from.name(1),link,source,likes.summary(1),comments.summary(1)']
))->execute();
$photoGraphObject = $photoRequest->getGraphObject();

谢谢!

0 个答案:

没有答案