Facebook Graph API:如何为您上传的图片添加标题?

时间:2012-02-24 09:37:54

标签: php facebook facebook-graph-api facebook-apps

我正在尝试将图片发布到Facebook上的相册中,并对图像进行描述。 我可以将图像上传到相册,但我似乎无法添加说明。

以下是我使用的代码:

// prepare the curl post fields
$batch = sprintf('[{"method":"POST", "relative_url":"%1$s/photos", "attached_files":"file1", "message":"caption"}]', $album_id);  

$post_fields = array(
'batch' => $batch,
'access_token' => $access_token,
'file1' => '@' . $image_abs_path,
'caption' => 'image caption goes here"
);
$uri = 'https://graph.facebook.com';

$curl = curl_init( $uri );
curl_setopt( $curl, CURLOPT_RETURNTRANSFER, 1 );  
curl_setopt( $curl, CURLOPT_POST, TRUE );
curl_setopt( $curl, CURLOPT_POSTFIELDS, $post_fields );  

$raw_data = curl_exec( $curl );
curl_close( $curl );

$data = json_decode( $raw_data, $assoc = TRUE );

我还尝试了一个名为“name”的后置字段,但是当我使用它时,我得到一个空数组。使用此后置字段时,图像不会添加到相册中。

1 个答案:

答案 0 :(得分:0)

尝试更改$ batch:


$batch = sprintf('[{"method":"POST", "relative_url":"%1$s/photos", "attached_files":"file1", "body" : "message=Your image caption"}]', $album_id); 

参考:Batch Upload 希望它有所帮助