现在我正试图找出如何使用facebooks graph 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);
问题是它只发布消息,没有别的,没有附件或任何东西。
有谁知道为什么?
由于
答案 0 :(得分:4)
答案 1 :(得分:1)
你需要使用旧的php SDK,直到图形支持附件...图表只支持photoupload。 我没有问题混合图形和旧SDK ..