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.

For some reason the following is not working.

I have the publish_stream permission. What could be wrong?

    function publishToFacebook($app_id, $app_secret, $fb_id) {
    require_once '../facebook-php-sdk-dafef11/src/facebook.php'; 
            $facebook = new Facebook(array(appId => $app_id,
                    secret => $app_secret,
                    cookie => true));
    if(is_null($facebook)) {
    // some code;
    die('bad');
    }
    else {
    // post to fb
        try {
           $post_id = $facebook->api('/' . $fb_id . '/feed/', 'post', array(
            'message' => 'my message',
            'link' => 'http://example.com',
            'picture'  => 'http://example.com/images/logo.jpg',
            'caption' => 'a caption'
            ));
           return $post_id;
        }
           catch (FacebookApiException $e) {
           echo "Error:" . print_r($e, true);
        }
    }
}
share|improve this question
update: I changed to "me" and it orks. But still doesn't work for $fb_id – Lucy Weatherford Feb 21 '12 at 19:40
also, I am getting error #201 "User not visible" – Lucy Weatherford Feb 21 '12 at 19:42
Sorry, but given the answer, it's too localized, the issue is one of a mistake in your usage of the API, and not an actual programming problem. I appreciate you taking the time to answer, but the answer ultimately indicates that the question is somewhat flawed in the first place. – casperOne Feb 26 '12 at 0:56
not true, if you would have used the api then you would understand that this str vs int for the fb id is important – Lucy Weatherford Feb 26 '12 at 1:39

closed as too localized by casperOne Feb 26 '12 at 0:55

This question is unlikely to help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. For help making this question more broadly applicable, see the FAQ.

1 Answer

up vote 0 down vote accepted

Make sure the input variables are in the correct format.

The problem was that I was using a number (integer) for $fb_id instead of a string. Even tough the facebook ID is a number, it is saved as a string, and therefore the code was not readable by facebook. Once I changed the input it worked perfectly.

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.