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 got the access_token (with email, publish_stream, and offline_access permissions).

Then, I do this code:

var uri = 'https://graph.facebook.com/' + req.user.fb.id + '/feed';
    request({   'method':'POST',
                'uri':uri,
                'json':{
                    'access_token':req.user.fb.accessToken,
                    'message':'testing 123',
                },
            },
     function(err,response,body){
     console.log(err);
     console.log(body);

    });

But facebook gives me this error message:

{"error":{"type":"OAuthException","message":"(#200) This API call requires a valid app_id."}}

I don't get it? The user logged in perfectly fine using facebook connect, and I got the access token.

share|improve this question
Are you providing a valid app_id? – Mat Sep 4 '11 at 7:58

1 Answer

up vote 6 down vote accepted

You would need to send the access_token as part of the query string, not as the post body.

var uri = 'https://graph.facebook.com/' + req.user.fb.id + '/feed?access_token=' + req.user.fb.accessToken;
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.