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 an app and a user who has added that app and authorized it with permissions: read_stream and user_status. I've got a node js app running that's trying to make an API call (using only the app credentials) to pull the user's posts but I get the following error: "A user access token is required to request this resource."

How can this be done without having to have the user login every time I want to pull their feed?

share|improve this question

1 Answer

It can't; you need a user access token to access that user's data - the error message is fairly clear about this I think.

Check the Authentication documentation - you should be storing the users' access tokens and using those to make API calls on behalf of those users

share|improve this answer
The user's access token will expire though after a while right? I'd like to have something that runs forever without having the user come back to login – wbrady Oct 2 '12 at 20:54
The user's access token is supposed to expire, you can get a maximum of 60 days before they need to come back, and each time they come back the 60 days is reset – Igy Oct 2 '12 at 21:40

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.