Skip to content

Account Settings

agnostos edited this page Sep 11, 2025 · 1 revision

Account Settings

Setting Description Required Example
auth_token Your Fansly authentication token Yes "xxxxxx"
user_agent Browser user agent string Yes "Mozilla/5.0..."

Getting your token

Method 0 (Easiest): Use the Setup Wizard

  • 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>/capture and show a one‑line snippet.
  • Press o to open fansly.com, log in, open DevTools Console, press c in the wizard to copy the snippet, paste it into the Console and hit Enter. Your token and user‑agent will be filled automatically.

Method 1 (Manual Console)

  1. Go to fansly and login and open devtools (ctrl+shift+i / F12)
  2. 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

Method 2 (Manual Storage View):

  1. Go to fansly and login and open devtools (ctrl+shift+i / F12)
  2. Click on Storage and then Local Storage
  3. Look for session_active_session and copy the token value

Clone this wiki locally