-
-
Notifications
You must be signed in to change notification settings - Fork 14
Account Settings
agnostos edited this page Sep 11, 2025
·
1 revision
| Setting | Description | Required | Example |
|---|---|---|---|
| auth_token | Your Fansly authentication token | Yes | "xxxxxx" |
| user_agent | Browser user agent string | Yes | "Mozilla/5.0..." |
- When the app starts for the first time, choose auto login in the setup wizard by pressing
a. - It will start a local capture on
http://127.0.0.1:<port>/captureand show a one‑line snippet. - Press
oto open fansly.com, log in, open DevTools Console, presscin the wizard to copy the snippet, paste it into the Console and hit Enter. Your token and user‑agent will be filled automatically.
- Go to fansly and login and open devtools (ctrl+shift+i / F12)
- In devtools, go to the Console Tab and Paste the following:
console.clear(); // cleanup console
const activeSession = localStorage.getItem("session_active_session"); // get required key
const { token } = JSON.parse(activeSession); // parse the json data
console.log('%c➡️ Authorization_Token =', 'font-size: 12px; color: limegreen; font-weight: bold;', token); // show token
console.log('%c➡️ User_Agent =', 'font-size: 12px; color: yellow; font-weight: bold;', navigator.userAgent); // show user-agent- Go to fansly and login and open devtools (ctrl+shift+i / F12)
- Click on
Storageand thenLocal Storage - Look for
session_active_sessionand copy thetokenvalue