我正在尝试用PHP创建Facebook事件。我的最后一个问题是个人资料图片。
我的问题是:
我可以使用外部图片网址来查看活动资料图片吗?
如果是,那怎么样?
答案 0 :(得分:2)
您将无法将该URL实际用作个人资料照片,但如果您首次将其下载到服务器,则可以使用该URL。 file_get_contents()
和file_put_contents()
的简单组合可以复制图像。
$externalImage = 'http://lorempixel.com/400/200/';
$tempImagePath = 'tmp/temp_image_path.jpg';
// save remote file to the server to $tempImagePath
file_put_contents( $tempImagePath, file_get_contents( $externalImage ));
// upload the image to the event
$facebook->api("/EVENT_ID/picture", "POST",
array('source' => '@'. realpath($tempImagePath) )
);
// remove temp image
unlink($tempImagePath);
答案 1 :(得分:0)
所以Lix的代码只是部分工作。但这是一个完整的工作代码。
$externalImage = 'External link to image';
$tempImagePath = 'Local link to save image';
$user = 123456789; // USER ID
// save image
file_put_contents( $tempImagePath, file_get_contents( $externalImage ));
// Create data for new event
$data = array(
'name' => 'Event title',
'description' => 'Event description',
'owner' => $user, // user as owner of this event
'location' => 'Location',
'start_time' => '2013-05-08T11:00:00-0700',
'end_time' => '2013-05-09T19:00:00-0700',
'@file.jpg' => '@'.realpath($tempImagePath),
'privacy_type' => 'OPEN'
);
// Create event
$eventID = $facebook->api('/'.$account.'/events', 'post', $data);
如果你有一些问题,请写信给我。