您可以从php / curl发布到用户墙并且它们出现在墙上和用户Feed中的日子已经过去了吗?
一直在测试新的隐私 - 它出现在我的墙上,但不会出现在朋友圈中。
继承我的阵列发布 -
$attachment = array(
'access_token' => $token,
'message' => $data['message'],
'name' => $data['name'],
'description' => $data['description'],
'picture'=> $data['picture'],
'icon' => $data['icon'],
'href' => $data['href'],
'link' =>$url,
'caption' => $data['caption'],
'privacy' => json_encode(array('value'=>'EVERYONE'))
);
有些值已被弃用,我知道,但是当图形API首次发布允许发布时,我构建了这个值。
什么是现在引起朋友关注的最好方法?
答案 0 :(得分:0)
我用来将内容发布到用户流的内容略有不同:
$this->facebookapi->api(
"/".$this->facebookuserid."/feed",
'post',
array(
'message'=> 'I answered to this week\'s question and participated to contest.',
'picture' => '',
'link'=> 'http://www.urltomysite.com/',
'description'=>'Participation to the 2011 Facebook Contest',
'name'=> '2011 Facebook Contest',
)
);
告诉我它是否有效。顺便说一下,我正在使用facebook PHP SDK,这就是$ facebookapi对象......