More action links in single wallpost
Is it possible to create wallpost with more than one action link? My code works only with one action link. Wallpost with two action links is not sent to Facebook (no error message). var publish = { method : 'feed', name : name, link : link, picture : picture, caption : caption, description : description, message : message, actions : [{ name : 'Link 1', link : 'http://www.example.com' },{ name : 'Link 2', link : 'http://www.example2.com' }] }; FB.api('/me/feed', 'POST', publish, function(response) {}); I got a response from Facebook and you really can not add more than one action link . Correct