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.

Is there a way to login with facebook from server side (Java, php, asp...)? What i have found till now envolves a popup dialog and a redirect_uri. What i want is to call a login url from my server code and take the response in JSON format for example (or plain, or xml...)

I have read the docs but no luck

share|improve this question
No, there is no way of doing that (at least no official way). Users are not supposed to give their credentials to 3rd parties, but login through Facebook themselves. – CBroe Nov 6 '12 at 16:47

1 Answer

Logging in to Facebook uses OAuth, which requires a user to be present, so the actual log in is not possible only from the server side. However, using the token you obtained with OAuth does not require a user.

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.