How can I define a route in my routes.jsx file to capture the __firebase_request_key parameter value from a URL generated by Twitter\'s single sign on process a
__firebase_request_key
Or perhaps something like this?
let win = { 'location': { 'path': 'http://localhost:8000/#/signin?_k=v9ifuf&__firebase_request_key=blablabla' } } if (win.location.path.match('__firebase_request_key').length) { let key = win.location.path.split('__firebase_request_key=')[1] console.log(key) }