I try to post a YouTube video directly into a Facebook Event wall, using the Graph API.
When posting to a FanPage wall I get a desired result (Post with preview picture and the video itself), But when posting to an event wall, I only get the message, without any video and preview picture.
Here's the code:
var eventObj =
{
source:'http://www.youtube.com/v/'+youTubeID,
picture:'http://img.youtube.com/vi/'+youTubeID+'/0.jpg',
message: messageText,
name: eventName,
caption: newDateArray[0] + ' ' + newDateArray[1].substr(0, 5)
};
FB.api('/'+facebookEventID+'/feed', 'post', eventObj, function(response){
//response code...
}
After this code is executed, I get a new post in the Event Wall, with only the messageText being displayed. I've tried sending only the source, but then it returns an error object with message it cant create a post without a message, so I tried sending both source and message and got the same result: only the message was displayed.
UPDATE BASED ON ANSWER:
I've tried using your code and your permissions, and the results are the same:
I get only the text:

Maybe its because I'm posting as a FanPage ? Do you have any idea how to solve it ?
UPDATE #2 BASED ON ANSWER:
It seems that for some reason an event created from within Facebook has a newer version of the post UI then an event created from an application using the Graph API.
This is from the event created within Facebook:

And this is from the event created with the Graph API:

You can see the second is an older version, and I guess this difference is also causing the problem of uploading YouTube links to events created by the Graph API, As I succeed uploading a YouTube link from the API to an event created by me from within Facebook.

