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.

When we post a feed on Facebook using Graph API, a parameter is passed called "Action" in which we need to pass an array of actions which contains name of action and link.

$feed=array(
'message' => "Trial fb post",
    'name' => "trial",
    'caption' => "Trial caption",
    'actions' => array(
        array(
        'name' => 'Give it a try',
            'link' => 'http://www.blinkpot.com/'
            )
    )
    );

I saw some posts having like this page option by which users can like the respective page. How can I attach that action with my post.

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.