I want to write a script that will log in to facebook.
I tried going to this URL:
https://www.facebook.com/login.php?&email=example@example.com&pass=password
but it doesnt work, it just redirects to the same page.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
What you are doing is GET, not POST.
Generally sending a password in a GET query is not a good idea. It is visible as plain text in the browser, in your request, which may be sniffed with a sniffing tool and in your browser history. That’s probably why Facebook does not accept it.