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 after the redirect from their servers?
http://localhost:8000/#/signin?_k=v9ifuf&__firebase_request_key=blablabla
I tried with the following routes configuration, but the :redirectParam
is not catching the mentioned param:
<Router>
<Route path="https://stackoverflow.com/" component={Main}>
<Route path="signin" component={SignIn}>
<Route path=":redirectParam" component={TwitterSsoButton} />
</Route>
</Route>
</Router>