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.

While trying to make a wall post on facebook using PHP as the scripting language , the script stops after a successfull authentication to facebook.The code used is as given below.Please help me to solve this issue.

$facebook = new Facebook(array(
         'appId' => $app_id,
         'secret' => $app_secret,
         'cookie' => true
        ));
        $fbcheck= $facebook->getUser();

        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' => 'Hello friends , try this job :)',
        'name' => "Jobslanda - The perfect job information system. ",
        'caption' => "My Caption",
        'link' => 'google.com',
        'description' => 'Jobslanda is one of the perfect job sharing system.',
        //'picture' => $urlParser->fbpostpic($input['ik']),
        'actions' => array(array(
            'name' => 'Get Search',
            'link' => 'http://www.google.com'
        ))
    );
        $result = $facebook->api(
        '/me/feed/',
        'post',
        $attachment
    );
share|improve this question
Facebook not Face book – Ethan Zhang May 1 '12 at 4:24

1 Answer

print_r($result); Check whether it returns an id with a number.

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.