Skip to content

Latest commit

 

History

History
17 lines (14 loc) · 390 Bytes

get_token.md

File metadata and controls

17 lines (14 loc) · 390 Bytes

How to get token?

  1. Go to https://www.happyaccidents.ai/
  2. Sign in
  3. Open console (F12)
  4. Write this script:
function getCookie(name) {
 const value = `; ${document.cookie}`;
 const parts = value.split(`; ${name}=`);
 if (parts.length === 2) return parts.pop().split(';').shift();
}
JSON.parse(decodeURIComponent(getCookie("supabase-auth-token")))[0]
  1. Save token