現在、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);
問題は、メッセージを投稿するだけで、他には何も、添付ファイルも何も投稿しないことです。
誰かがその理由を知っていますか?
ありがとう