mirror of
https://github.com/B16f00t/whapa.git
synced 2026-04-25 02:45:59 +03:00
[GH-ISSUE #243] {'Error': 'ServiceDisabled'... #208
Labels
No labels
enhancement
help wanted
pull-request
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/whapa#208
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @h7sj on GitHub (Sep 2, 2025).
Original GitHub issue: https://github.com/B16f00t/whapa/issues/243
Reporting how I fixed this. The answer is buried in the other issue trackers, but it takes some stitching together.
cfg/settings.cfg. (This guide is probably more likely to work if you had it working before).libsand delete the static library forgpsoauthgpsoauth,pip3 uninstall gpsoauthdoc/requirements.txtto remove the hard version linkpip3 install -r requirements.txtlibs/whagodri.py, and insert this on line 119 (level with the print statement).a. Go to https://accounts.google.com/EmbeddedSetup
b. Log into your Google Account
c. Click on "I agree" when prompted. The page may show a loading screen forever; ignore it and move on to the next step.
d. Obtain the value of the oauth_token cookie. For more details see the gpsoauth-java readme.
e. On Firefox, you can go to developer console, select storage, and look for the oauth key.
cfg/settings.cfgwhagodri.pywill do the key exchange from the temporary key.@southall01 commented on GitHub (Dec 14, 2025):
Can u show your whagodri.py, still don't get master code
@southall01 commented on GitHub (Dec 14, 2025):
bakup have 700 files and i just get 466
still don't get where to right down to have the master token
import gpsoauth
email = 'example@gmail.com'
password = 'my-password'
android_id = '0123456789abcdef'
master_response = gpsoauth.perform_master_login(email, password, android_id)
master_token = master_response['Token']
auth_response = gpsoauth.perform_oauth(
email, master_token, android_id,
service='sj', app='com.google.android.music',
client_sig='...')
token = auth_response['Auth']