Log in to Mouli Rework
Access your Epitech projects dashboard
Checking for extension...
OR
How to get your token
- Visit my.epitech.eu and log in
- Open your browser's Developer Tools (F12 or Right-click > Inspect)
- Go to the "Application" tab (Chrome) or "Storage" tab (Firefox)
- Look for "Local Storage" in the sidebar, expand it and select "https://my.epitech.eu"
- Find the key named "argos-api.oidc-token" and copy its value
-
Alternatively, run this in your browser's console to get the token:
const token=localStorage.getItem('argos-api.oidc-token');console.log('Your token:');console.log(token)Copied!