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.

All i need is When a user submit's his email_id and password i need to check with facebook , whether this is a valid email_id and password with respect to facebook.

i am googling but not satisfied with results, if any one has some code or link pls help me...

share|improve this question
Read Facebook Python API at github.com/pythonforfacebook/facebook-sdk – theAlse Mar 11 at 9:36
Security-aware user should not enter his facebook password outside of Facebook. You can use FaceBook OAuth api instead. – Scorpil Mar 11 at 9:39
@Scorpil just i have to authenticate with facebook, in many applications their will be option saying login with facebook that what i need – user1182090 Mar 11 at 9:41
@theAlse How to implement facebooklogin functionality – user1182090 Mar 11 at 10:22
how to get import oauth2 as oauth import urlparse consumer_key = "CONSUMER_KEY" consumer_secret = "CONSUMER_SECRET" consumer = oauth.Consumer(consumer_key, consumer_secret) client = oauth.Client(consumer), in this what is consumer_key and consumer_secret – user1182090 Mar 11 at 11:26

closed as not a real question by CBroe, Inbar Rose, Ɓukasz Lech, chepner, jeb Mar 11 at 14:41

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

1 Answer

Looks like you need to use OAuth API.

Here is official documentation with PHP examples. https://developers.facebook.com/docs/howtos/login/server-side-login/

And here is python example for Google App Engine: http://facebook-python-library.docs-library.appspot.com/facebook-python/examples/oauth.html

There is tons of libraries for almost any popular framework out there. Before you start, i'd recommend you to learn about OAuth2 protocol (so that you'd know what you're actually doing): http://oauth.net/2/

Good luck.

share|improve this answer
@ Scorpil if i need to design like login with fb then how could i authenticate is their any code just if i send email and password it returns me status code saying "Valid" or "invalid" – user1182090 Mar 11 at 10:08
i read facebook graphapi object but facebook.GraphAPI(oauth_access_token) here what we should pass for oauth_access_token, our login and password or wat to pass here – user1182090 Mar 11 at 10:45

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