我使用這個代碼發佈到我的應用程序牆如何將分享動作添加到Facebook的帖子?
$attachment = array('message' => 'xxxxxxxxxxxxxxxx...',
'name' => 'xxxxxxxxxxxxxxxxxxx',
'caption' => 'xxxxxxxxxxxxxxxxxx',
'link' => 'xxxxxxxxxxxxxxxxxx',
'description' => 'xxxxxxxxxxxxxxxxxx',
'picture' => 'xxxxxxxxxxxxxxxxxx',
'actions' => array(array('name' => 'Download!',
'link' => 'xxxxxxxxxxxxxxxxxx'))
);
$result = $facebook->api('/2222222222222/feed/','post',$attachment);
當我張貼到我的應用程序手動牆後是出現在應用程序用戶牆共享動作 但是當我使用上面的代碼它只會出現在應用程序牆上,只有like和comment操作。 爲什麼? 以及如何將共享操作添加到操作數組?
not working.still帖子中無共享鏈接? –