I'm going through the 2nd ed. of the book now and it's great. I've spent hours upon hours trying to log into Yahoo! with a POST request but I'm being thwarted. First, the program throws a TooManyRedirects error. When I add the keyword arg of allow_redirects=False, apparently I am being redirected anyway to a site with no content:
Output of response_obj.text:
'<p>Found. Redirecting to <a href="https://guce.yahoo.com/consent?gcrumb=F12tPO4&trapType=login&done=https%3A%2F%2Fwww.yahoo.com%2F&src=">https://guce.yahoo.com/consent?gcrumb=F12tPO4&trapType=login&done=https%3A%2F%2Fwww.yahoo.com%2F&src=</a></p>'
I am passing my browser headers and just about every other data I can identify under normal login circumstances with the request.
If anyone can successfully log into Yahoo, please spread the knowledge!
I'm going through the 2nd ed. of the book now and it's great. I've spent hours upon hours trying to log into Yahoo! with a POST request but I'm being thwarted. First, the program throws a
TooManyRedirects
error. When I add the keyword arg ofallow_redirects=False
, apparently I am being redirected anyway to a site with no content:Output of
response_obj.text
:'<p>Found. Redirecting to <a href="https://guce.yahoo.com/consent?gcrumb=F12tPO4&trapType=login&done=https%3A%2F%2Fwww.yahoo.com%2F&src=">https://guce.yahoo.com/consent?gcrumb=F12tPO4&trapType=login&done=https%3A%2F%2Fwww.yahoo.com%2F&src=</a></p>'
I am passing my browser headers and just about every other data I can identify under normal login circumstances with the request. If anyone can successfully log into Yahoo, please spread the knowledge!