mirror of
https://github.com/B16f00t/whapa.git
synced 2026-04-25 10:55:56 +03:00
[GH-ISSUE #74] How to manually find Google token? #69
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#69
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 @ghost on GitHub (Oct 29, 2020).
Original GitHub issue: https://github.com/B16f00t/whapa/issues/74
Hi, I'm trying to figure out how to find the Google token (Google Account token) without providing auth (already logged in on the browser).
Which request contains the token? Or is it on the cookies?
@B16f00t commented on GitHub (Oct 29, 2020):
Whapagodri does not store the token, but uses it in the request within the header.
@dev-point-team commented on GitHub (Nov 1, 2020):
create oauth authorization from google console, it will be like
https://accounts.google.com/o/oauth2/v2/auth?client_id=YOUR_CLIENT_ID&redirect_uri=YOUR_REDIRECT&response_type=code&scope=https://www.googleapis.com/auth/drive.appdata https://www.googleapis.com/auth/drive.file
then you will get a access token for log-in user, pass to script where @B16f00t refer