Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a problem with adding picture to the FB event. To create event I use FB PHP SDK.

here is the code:

$fb_config = array(
  'appId' => 'xxx',
  'secret' => 'xxx',
  'fileUpload' => true
);

$facebook = new Facebook( $fb_config );
$facebook->setFileUploadSupport(true);
$access_token = get_option( 'facebook_token' );
$facebook->setAccessToken( $access_token );

$eventInfo = array(
  'fields'=>'name,picture,start_time,description',
  'name'          => 'Event name',
  'start_time' => 'Start Date',
  'end_time' => 'End Date',
  'description'   => 'Event Desc',
  'picture' => 'http:// link to the image on the same server as provided on the app conf page.'
);

$result = $facebook->api(
  '/fb_page_id/events',
  'post',
  $eventInfo
);

print_r($result); // {id: fb_event_id }

with this code event creates fine, but picture of the event is missing. When I use Facebook Graph Api explorer tool with the same fields, picture is missing too.

thanks for your help!

share|improve this question

1 Answer

up vote 0 down vote accepted

Uploading a picture to facebook

try posting via curl , it would work !

plus it may be that your application is not having , publish_stream permission

http://developers.facebook.com/docs/reference/api/photo/

read the available options here ! http://developers.facebook.com/docs/reference/api/user/#events

share|improve this answer
Hammad, thank you! – Robert Isaev Jan 13 at 22:06

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.