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 am building a facebook app, in which I am writing user wall using face book graph api.

Now I would like to include more than 1 links in the message . Is it possible,how can I do it.

This is my code

$facebook->api('/'.$uid.'/feed', 'post', array(
            'message' => 'Dear friend, I have given '.$input['rate']." to the movie". $moviedetails['ftitle']. "from ReelReview",
            'name' => $moviedetails['ftitle'],
            'description' => $moviedetails['description'],
            'caption' => 'ReelReview - the best movie review app',
            'picture' => 'http://site.com/Movie.jpg',
            'link' => 'http://mysite.com'
        ));

Now I am trying to include some links in the message and description,

Thanks in advance

share|improve this question

1 Answer

You can only have one 'link' per wall post , however you could include several links in your description. The difference is that the 'link' property will be the link that facebook scans for information, and displays images and so forth. The links in the description will look like in a normal message.

share|improve this answer

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.