🏁 RallyTV Token Extractor

Automatic token extraction from browser session

🚀 Quick Token Extraction

This tool will help you extract fresh tokens from your RallyTV session.

Step 1: Login to RallyTV

Click the button below to open RallyTV in a frame, then login with your credentials.

Step 2: Extract Tokens

After logging in, click "Extract Tokens" to automatically find and extract your authentication tokens.

Step 3: Update Scripts

Access Token:

ID Token:

Refresh Token:

📋 Manual Token Extraction

If automatic extraction doesn't work, follow these steps:

  1. Open rally.tv in a new tab
  2. Open Developer Tools (F12)
  3. Go to the Application tab
  4. In the left sidebar, expand Local Storage
  5. Click on https://www.rally.tv
  6. Look for keys starting with @@auth0spajs@@
  7. Copy the values and paste them below:

🔄 Alternative: Use Browser Console

You can also extract tokens using the browser console:

Console Script:

// Run this in the browser console on rally.tv (function() { console.log('🔍 Searching for RallyTV tokens...'); // Check localStorage for (let i = 0; i < localStorage.length; i++) { const key = localStorage.key(i); if (key && key.includes('@@auth0spajs@@')) { const value = localStorage.getItem(key); try { const data = JSON.parse(value); if (data.body && data.body.access_token) { console.log('✅ Found tokens!'); console.log('Access Token:', data.body.access_token); console.log('ID Token:', data.body.id_token || 'Not found'); console.log('Refresh Token:', data.body.refresh_token || 'Not found'); console.log('Expires:', new Date(data.expiresAt * 1000)); // Copy to clipboard if possible if (navigator.clipboard) { const tokenData = { access_token: data.body.access_token, id_token: data.body.id_token, refresh_token: data.body.refresh_token, expires_at: data.expiresAt }; navigator.clipboard.writeText(JSON.stringify(tokenData, null, 2)); console.log('📋 Tokens copied to clipboard!'); } return; } } catch (e) { // Skip invalid JSON } } } console.log('❌ No tokens found in localStorage'); })();