I'm trying to post to a specific event's wall by the javascript SDK. I have an access token with publish_stream permission, and the event was created by my application, so my problem is not a permission related.
When posting to a FanPage wall, i use this JavaScript code to initiate a FB.ui request:
var obj =
{
method: 'feed',
message:'test',
to: 'fanPageID' //fan page ID to post to '
};
FB.ui(obj, function(response){
//check ui response....//
});
With this code everything is working and this facebook frame pops up:

When I click share I see the post on the FanPage wall.
But, when I try to use this code for posting directly to an event's wall:
var obj =
{
method: 'feed',
message:'test',
to: 'eventID' //event ID to post to '
};
FB.ui(obj, function(response){
//check ui response....//
});
I get the Facebook pop up and I see the event name on the title:

But after clicking share I get this error on the console:
POST https://www.facebook.com/dialog/feed 500 (Internal Server Error)
I've tried changing the to field to 'eventID/feed' and method to 'post' but non works.
The only way I've managed to send a post to an event's wall was using a FB.api call:
FB.api("eventID/feed", 'post', { message:"test1234", link: "http://www.acoolurl.com/" }, function(response){})
But with this solution the message text is already initiated ("test1234"), and I want the user to enter a message with the FB.ui frame popup, just as the FanPage post. How can I solve it ? thanks...
