使用图形api facebook上传备注粉丝页面

时间:2013-01-12 20:08:12

标签: php facebook api facebook-graph-api facebook-javascript-sdk

您好我正在使用此代码在我的粉丝页面上发布一条说明,它有效,问题是日记页面没有显示图片,只有文字,为什么?

<?php
$access_token='MY ACCES TOKEN FAN PAGE';
$attachment = array(
'access_token' => $access_token,
'message' => 'MESSAGE <img src="IMAGE_ADDRESS" alt="TEST IMAGE" /> ',
'subject' => 'test test test'
);

// set the target url
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL,'https://graph.facebook.com/id_fanpage/notes?');
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, FALSE);
curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 2);
curl_setopt($ch, CURLOPT_POST, true);
curl_setopt($ch, CURLOPT_POSTFIELDS, $attachment);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, false); //to suppress the curl output

$result= curl_exec($ch);
curl_close ($ch);

1 个答案:

答案 0 :(得分:0)

你是如何上传图片的?

似乎notes的{​​{1}}字段接受HTML标记,因此具有以下内容应该有效:

message