Here’s one of my previous answers on this, this should be able to solve your problem 
To fetch your token you can open the developer console and run this:
JSON.parse(localStorage.cachedUser).persistentToken
I’m a bit unsure, if it is the persistentToken
property or the gitAccessToken
. Either way, here is how to fetch both:
JSON.parse(localStorage.cachedUser).persistentToken
JSON.parse(localStorage.cachedUser).gitAccessToken
3 Likes