Reputation: 2592
I am thinking of building an app(web or desktop) with which i can access my facebook account using only my email and password.
Is it possible?
What are the best ways ? Any tutorials or suggestions?
Upvotes: 0
Views: 2302
Reputation: 52083
You would have to rely on scraping Facebook. There are a few tutorials out there but its the same as scraping any other site: watching the urls and post values that get sent back and forth, storing the session login cookie, and then parsing the returned html. However, this is against their TOS and could cause your IP or account to be banned, on top of the measures they have in place to prevent against scraping such as randomly introducing captchas if they detect bots and making sure the IP address geolocation is similar to locations the user normally access Facebook from (making it tough to do a server solution to manage users accounts with their email/password.
Upvotes: 0
Reputation: 7601
yes, its possible.
Check the facebook API at http://developers.facebook.com/
Upvotes: 1