有什么方法可以更改 Facebook 相册隐私设置graph api
吗?我试图找出答案,但我能找到的只是如何使用 获取隐私设置fql
,而不是设置。
我正在创建专辑如下
$postdata = http_build_query(array(
'name' => $album_name,
'message' => $album_description
)
);
$opts = array('http' =>
array(
'method'=> 'POST',
'header'=>
'Content-type: application/x-www-form-urlencoded',
'content' => $postdata
)
) $context = stream_context_create($opts);
$result = json_decode(file_get_contents($graph_url, false, $context));
$albumid = $result->id;
现在,如果我添加privacy=>"value"
,它会给出$albumid=null
。我不确定我需要在哪里添加隐私参数。