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'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:

enter image description here

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:

enter image description here

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...

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

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

Browse other questions tagged or ask your own question.