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 4 hours tring to send a post on a page on facebook with

$attachment = array(
        'message' => "@[".$id.":1:".$name.'] dsf sadfewqr',
                    'name' => "test test etst etst test test",
                    'link' => "http://www.tiscali.it",
                    'description' => "test",
        'picture'=> "http://www.example.com/img.jpg",
        'message_tags' => array(
            'data' => array(
                'id' => $id,
                'name' => $partecipant['name_screen'],
                'offset' => 0,
                "type" => "user",
                'length' => strlen($name)
            )
        ),
        'access_token' => '--fanpageaccesstoken--'
    );

    $facebook->api('/'.$idfanpage.'/feed', 'POST', $attachment);

Every time i get only message without tag. What i'm doing wrong?

Thanks everyone!

share|improve this question

1 Answer

up vote 1 down vote accepted

Where did you get the message_tags parameter from?

According to https://developers.facebook.com/docs/reference/api/user/#posts you should use the tags parameter to give a list of comma separated user ids.

And pay attention to the note saying, You cannot specify this field without also specifying a place.

share|improve this answer
I made ​​a mistake using the reading parameters. And how can i use tags within the message? Thanks for your answer – Claudio Ɯǝıs Mulas Jun 2 '12 at 20:02
Do you actually mean tagging in the sense of saying you were at some place with other people, or do just mean mentioning someone in a post, as you can do on facebook by starting to type @username? The latter is obviously not possible via the API, see also stackoverflow.com/questions/3099183/… – CBroe Jun 2 '12 at 20:23

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.