0
我想使用Facebook PHP SDK從用戶的牆上發佈一個組(即,不是狀態更新,而是用戶通過外部應用程序,而不是來自通過外部應用程序組)。我很難找到有關該主題的文檔,並且希望獲得代碼示例以及任何有關任何限制的信息(例如,如果用戶不屬於該組,則可以在某人的牆上發帖)。使用Facebook PHP SDK從組發佈
我使用「從」參數試過了,是這樣的:
$attachment = array(
'access_token' => $access_token,
'message' => "Message from the group",
'name' => "Name of the Post",
'from' => array(
'name' => "Sender's Name",
'id' => "#############"
),
'link' => "http://myurl.com/",
'description' => "Description of the Posting",
'picture'=>"http://myurl.com/mylogo.png",
);
$ret_code=$facebook->api('/'.$fb_id.'/feed', 'POST', $attachment);