現在我想弄清楚如何使用facebooks圖形API發佈附件。發佈附件Facebook圖形API
現在,我使用
$attachment = array(
'message' => $_POST['tt'],
'text' => 'Download',
'name' => 'name',
'href' => 'http://www.url.com',
'description' => ' description!',
'media' => array(array(
'type' => 'mp3',
'src' => $url,
'href' => 'http://www.url.com/',
'title' => $title,
'artist'=> 'artist',
'album'=> 'the album')));
$statusUpdate = $facebook->api('/me/feed', 'post', $attachment);
問題是,它的唯一發布的消息,不出意外,沒有附件或任何東西。
有沒有人有任何想法爲什麼?
謝謝
Graph API是否支持附件? – 2012-05-03 16:25:40