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 make a feed post with the action link property via a POST request using the Graph API and jQuery. The post works fine without the action link property but doesn't work when I include the action link. The same action link property code works fine when used with the JS SDK but I want to use it directly with the Graph API. Is the action link property just not available using the Graph API (and only through the JS SDK) or am I doing something wrong?

var graphApiLink = 'https://graph.facebook.com/'+ facebookId +'/feed';
$.post(graphApiLink,{access_token: accessToken, actions: [{'name': 'Action', 'link': 'http://www.example.com'}]},function(resp) {
    });
share|improve this question

1 Answer

up vote 0 down vote accepted

You might want to review the information here: http://developers.facebook.com/docs/reference/dialogs/feed/#graphapicall

Keep in mind, according to FB's error messages, the post's links must direct to the application's connect or canvas URL.

share|improve this answer
My code example uses www.example.com but actual link goes to canvas URL and works in JS SDK – Steven Jul 9 '12 at 23:56

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.