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 know I cannot post through Facebook API messages to the user's wall with the links which go out of Facebook.

But can I post a message, where would be a link to a Facebook user? So far I didn't find something like that, so trying my luck here.

share|improve this question

2 Answers

Using the /me/feed endpoint you can post to the user's wall, nothing prevents it.

You will need publish_stream permission.

if ($user) {
        $attachment = array(
            'message' => 'this is my message',
            'link' => 'http://www.facebook.com/profile.php?id=xxxx',

        );

        try {
            // Proceed knowing you have a user who is logged in and authenticated
            $result = $facebook->api('/me/feed/','post',$attachment);
        } catch (FacebookApiException $e) {
            error_log($e);
            $user = null;
        }
    }
}
share|improve this answer
Yes, BUT: I would need to post the link here: 'message' => 'this is my message',, for example: 'message' => 'this is my message: <a href="..">LINK</a>',. I know I can add separated link to the publish_stream, but I don't need it. – user984621 Oct 14 '12 at 14:48
@user984621 nothing is stopping you from including a link though you cannot have <a> tags and the attachment will not appear. The only way to get the attachment to work is to use link – phwd Oct 14 '12 at 14:51

I know I cannot post through Facebook API messages to the user's wall with the links which go out of Facebook.

You surely can, using the feed api

If the user have given you the permission to publish , you can post any link on his wall.

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.