Building a frontend app without a backend, I have decided to use Instagram implicit authentication. However, once the user authorizes the app, Instagram redirects to my redirect_uri with the access token in this format:
http://your-redirect-uri#access_token=ACCESS-TOKEN
. How can I properly extract the access token from this? I attempted to use the router but encountered difficulties due to the '#' character.