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 have php code that posting in the wall of the user that use in my app. but in the post write "post by _" (My app name). the code is:

   $fql_info = $facebook->api($fql_query);

    if($fql_info[0][offline_access] == 1){

   $attachment =  array(
        'message' => "",
        'name' => u("ghfhgfhfgh"),
        'description' => u("fghgfhgfh"),
        'link' => "http://goo.glgfhgfhgf",
        'picture'=> "http://gfhgfhgfhfh"
        );




        $facebook->api('/'.$f[uid].'/feed', 'POST', $attachment);
$abc.=$f[uid]."\n";
echo $f[uid]."-".$fql_info[0][offline_access]."\n";

I mean like it: http://i.stack.imgur.com/04LLm.jpg

thank you :)

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.