We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b3320cc commit 25c556aCopy full SHA for 25c556a
src/website/index.js
@@ -25,7 +25,13 @@ function parseLocationQuery() {
25
const locSearch = queryString.parse(document.location.search.substr(1));
26
const locHash = queryString.parse(document.location.hash.substr(1));
27
28
- const keys = [ 'id_token', 'access_token', 'value', 'token'];
+ const keys = [
29
+ 'id_token',
30
+ 'access_token',
31
+ 'value',
32
+ 'token',
33
+ 'debugger-io?token'
34
+ ];
35
for(const key of keys) {
36
const token = locSearch[key] || locHash[key];
37
0 commit comments