Quantcast
Channel: BlogoSfera » payload
Viewing all articles
Browse latest Browse all 10

Python: Having trouble logging into website

$
0
0

I’m trying to log in to a website using python requests. I’ve followed this post, but everytime I print the text of the website, I get the text of the log in page. Here’s what I have: url = 'https://example.com/login' payload = {'email':'myemail@example.com', 'password':'foobar'} with requests.Session() as s: p = s.post(url, data=payload) print p.text The […]

The post Python: Having trouble logging into website appeared first on BlogoSfera.


Viewing all articles
Browse latest Browse all 10

Trending Articles