2012-08-05 27 views
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右邊我的文章的鏈接。

回答

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); 
相關問題