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.

Iam trying to post to the users wall using PHP. It is not working. Please help me to solve the issue. I have used the following code.

$facebook = new Facebook(array(
         'appId' => $app_id,
         'secret' => $app_secret,
         'cookie' => true
        ));
        $fbcheck= $facebook->getUser();
        //op($fbcheck);exit;
        if(is_null($fbcheck) or !$fbcheck or $fbcheck==0)
        {
         header("Location:{$facebook->getLoginUrl(array('scope' => 'user_status,publish_stream,user_photos,photo_upload'))}");

        }


        $attachment = array(
        'message' => 'It is a programming test',
        'name' => $details['jobtitle'],
        'caption' => "Sunil Kumar",
        'link' => $urlParser->job($details['jkey']),
        'description' => 'Jobslanda is one of the perfect job sharing system.',
        'picture' => 'http://jobslanda.com/job.gif',
        'actions' => array(array(
            'name' => 'Get Search',
            'link' => 'http://www.google.com'
        ))
    );

        $result = $facebook->api(
        '/me/feed/',
        'post',
        $attachment
    );
share|improve this question
after redirecting from facebook get the code from the url and then check, because your $fbcheck always return 0 Check the given link stackoverflow.com/questions/6484478/facebook-getuser-returns-0 – jogesh_pi May 1 '12 at 9:56
Sorry ..I can't understand it . Could u plz explain please. – Sunil May 1 '12 at 11:20

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.