我可以上传照片并添加带有Graph API的链接吗?我只想包含一个像Instagram应用程序那样的原始帖子的链接。我希望它看起来像这样:
picture-name -- http://myhost.com/link/to/original/post
我的代码是:
$post_link = get_permalink($post_id);
$file='sample.jpg';
$photo_details = array(
'message'=> 'Photo message',
'source' => '@' . realpath($file)
);
$upload_photo = $facebook->api('/'.$album_uid.'/photos', 'post', $photo_details);
我可以将我的图片上传到脸谱相册,但我希望在Photo message
右侧添加我的帖子链接。
答案 0 :(得分:0)
你的意思是你只需要将链接附加到当前消息上吗?
$post_link = get_permalink($post_id);
$file='sample.jpg';
$photo_details = array(
'message'=> 'Photo message - '.$post_link,
'source' => '@' . realpath($file)
);
$upload_photo = $facebook->api('/'.$album_uid.'/photos', 'post', $photo_details);