で 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
ます。プライバシー パラメータを追加する必要がある場所がわかりません。