jaraco / googlevoice

Python Google Voice library based on pygooglevoice

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

2019 LoginError again

ag415 opened this issue · comments

commented

I posted about this on the petazz pygooglevoice repo tracker, but I figured I'd post it here as well as I imagine this fork of pygooglevoice is also affected.

Looks like they made some major change to the login process. From what I gather, this module was using one of the last remaining old-school style login methods that still existed in some hidden part of Google's web servers, where it actually able to pass the username and password in a single request.

Google has since updated that last remaining old school method to use their new style method where you have to first send the username, process a bunch of unreadable javascript garbage, generate like 20 outbound network requests to various endpoints that nobody knows what they do, and then pass the password in a separate request, then presumably process more javascript garbage, etc, and then finally let you log on.

Looks like a radical re-write of the login method is required to fix this issue. Just putting this on your radar as well.

For reference: pettazz#61

I thought Less Secure app login method ould ork with Google's Nonsense but doesnt seem so

I think this is essentially a dupe of #8.