我想在Facebook上发布自定义隐私设置:
$postRequest=new FacebookRequest($sess,'POST','/me/feed',array(
'message'=>'My first post using graph api ',
'description'=>'new Description',
'privacy'=>array('description'=>'Only Me','value'=>'SELF'),
'link' => 'www.example.com'
)
但发生错误:
(#100)隐私必须包含有效的隐私“价值”
怎么了?
答案 0 :(得分:1)
你很亲密。您必须将PHP数组编码为JSON数组:
'privacy' => json_encode(array('description'=>'Only Me','value'=>'SELF')),