0
我可以上傳照片幷包含Graph API的鏈接嗎?我只想包含Instagram應用程序的原始文章鏈接。我希望它看起來像這樣:如何在圖表API中插入我上傳的照片中的鏈接
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);
我可以上傳我的圖片至Facebook相冊的,但我想包括在Photo message
右邊我的文章的鏈接。