-
Notifications
You must be signed in to change notification settings - Fork 14
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
".profiles/default/auth.json" (OnlyFans Downloader made updates) #5
Comments
I suppose I should, but the extension isn't "missing" any information necessary so I've been kinda lazy about. Here's a default {
"auth": {
"username": "",
"auth_id": "",
"auth_hash": "",
"auth_uniq_": "",
"sess": "",
"app_token": "33d57ade8c02dbc5a333db99ff9ae26a",
"user_agent": "",
"email": "",
"password": "",
"support_2fa": true,
"active": true
}
} Here's an example JSON that the cookie helper extension gives (with censored information): {
"auth_hash": "",
"auth_id": "<REDACTED>",
"auth_uniq_": "",
"sess": "<REDACTED>",
"app_token": "33d57ade8c02dbc5a333db99ff9ae26a",
"user_agent": "Mozilla/5.0 (X11; Linux x86_64; rv:88.0) Gecko/20100101 Firefox/88.0",
"support_2fa": true,
"username": "<REDACTED>",
"active": true
} All you really have to do, is replace the object that comes after {
"auth": {
"auth_hash": "",
"auth_id": "<REDACTED>",
"auth_uniq_": "",
"sess": "<REDACTED>",
"app_token": "33d57ade8c02dbc5a333db99ff9ae26a",
"user_agent": "Mozilla/5.0 (X11; Linux x86_64; rv:88.0) Gecko/20100101 Firefox/88.0",
"support_2fa": true,
"username": "<REDACTED>",
"active": true
}
} Once you run the downloader software, it will update the {
"auth": {
"username": "<REDACTED>",
"auth_id": "<REDACTED>",
"auth_hash": "",
"auth_uniq_": "",
"sess": "<REDACTED>",
"app_token": "33d57ade8c02dbc5a333db99ff9ae26a",
"user_agent": "Mozilla\/5.0 (X11; Linux x86_64; rv:88.0) Gecko\/20100101 Firefox\/88.0",
"email": "",
"password": "",
"support_2fa": true,
"active": true
}
} I'll leave this issue open though, since ideally the cookie helper extension should wrap it inside the |
Version 1.0.3 has been released that addresses this: https://github.com/M-rcus/OnlyFans-Cookie-Helper/releases/tag/1.0.3 |
The OnlyFans downloader as changed how the settings are organized and what is grabbed. Is it possible to get an update to account for the latest version of the downloader?
The text was updated successfully, but these errors were encountered: