mirror of
https://github.com/B16f00t/whapa.git
synced 2026-04-25 02:45:59 +03:00
[GH-ISSUE #241] how to use Oauth to login? #209
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#209
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 @alanpinheirolp on GitHub (May 24, 2025).
Original GitHub issue: https://github.com/B16f00t/whapa/issues/241
Can you show some example?
@davispuh commented on GitHub (Dec 11, 2025):
Currently it's broken, but I fixed it with #247 and then follow
https://github.com/giacomoferretti/whatsapp-backup-downloader-decryptor?tab=readme-ov-file#getting-the-oauth_token
https://github.com/simon-weber/gpsoauth?tab=readme-ov-file#alternative-flow
@southall01 commented on GitHub (Dec 12, 2025):
I'm new on this, and istill don't know where i right down this
( import gpsoauth
email = 'example@gmail.com'
android_id = '0123456789abcdef'
token = '...' # insert the oauth_token here
master_response = gpsoauth.exchange_token(email, token, android_id)
master_token = master_response['Token'] # if there's no token check the response for more details
auth_response = gpsoauth.perform_oauth(
email, master_token, android_id,
service='sj', app='com.google.android.music',
client_sig='...')
token = auth_response['Auth'] )
Please some help