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 a link with Facebook PHP as in the example in https://developers.facebook.com/docs/reference/php/facebook-api/. I've written this code:

$ret_obj = $facebook->api('/' . $idFacebook . '/feed', 'POST',
    array(
        'link' => $enlace,
        'message' => $mensaje,
        'name' => $nombreAplicacion,
        'caption' => 'Juega en ' . $nombreAplicacion,
        'description' => '...',
        'picture' => '...',
        'type' => 'link',
        'application' => array(
            'name' => $nombreAplicacion,
            'id' => AppInfo::appID() )
    ));

The problem is that the link which is posted is the link to my application insted of $mensaje. Is that a constraint or am I doing something wrong?

Thanks in advance.

share|improve this question
What is the value of $mensaje when you echo it? – Matt Aug 20 '12 at 20:59
$mensaje is a plain text that the user writes and it is written completely in the facebook post. – honnix Aug 20 '12 at 21:06
2  
I'm not interested in what it's supposed to be, I'm interested in its actual value when it gets sent to facebook. – Matt Aug 20 '12 at 21:16
1  
@Matt Thanks, you helped me notice I did it wrong. The posted link was in fact correct. The problem was I didn't provide the correct $link – honnix Aug 20 '12 at 21:56
Glad I could help! – Matt Aug 21 '12 at 13:32

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.