forms - Why doesn't 'POST'ing parameters work on the FB login URL? -


I want to write a script that is logged in to Facebook.

I tried to get to this URL:

But that does not work, it redirects to only one page.

What you're doing is GET, not a post.

Generally sending a password in a GET query is not a good idea. It appears as plain text in the browser in your request, which can sniff in a sniffing device and your browser history. Perhaps this is the reason that Facebook does not accept it.

Comments