Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Update Facebook status externally using PHP with username and password of an User

Tags:

php

facebook

Is it possibile to update the status of facebook externally using a user's username and password with PHP. without any user interaction(like facebook connect). Also without using curl. I know there are come facebook mobile clients like snaptu. how do they access inbox, wall and our status just knowing the username and password.?? Thanks in advance

like image 813
openros Avatar asked Nov 14 '22 13:11

openros


1 Answers

I don't know what you have against cURL, but you can do this with any HTTP client that can handle cookie (or that you can roll cookie support for).

However you should not even remotely consider doing this! Unless it's for a hacky script that will never leave your computer and that you use for your own account. You should never be asking for other peoples' passwords. Use OAuth.

like image 194
singpolyma Avatar answered Dec 25 '22 13:12

singpolyma