I am using facebook-php-sdk to create an event for the page.
Now, as described here , you can upload an image to the event.
The problem is that this is a profile picture. But since more than a year ago, facebook has been offering new, big covers for events. I want to upload an image there, not a profile image. Is it possible? I did not find any help on the Facebook Developer Graph Api Events page, as the method for loading the profile image (HTTP POST TO / EVENT_ID / picture) is described.
In short: is it possible to upload a cover photo for an event through the Graph API?
UPDATE: I tried to upload the photo to the photo album and get the image ID. Then I tried to select this image as the cover of the event.
$cover = array( 'cover' => $uploaded_photo_id, ); $fb->api('/' . $this->FacebookEventID, 'POST', $cover);
Unfortunately, this does not work as it does on the pages.
I'm starting to think that this is not possible at the moment.
Also, if you install the cover using the website, you can request an api schedule using https://graph.facebook.com/Event_ID?fields=cover which will return the cover.
UPDATE:
I still had no success. But if you answer, please keep in mind: I want to download the cover for the event! NOT PROFILE PICTURE