Can I get the URL location parameters after a #?
I’m attempting to implement Auth0 with Appguyver. I am getting a successful callback after the login but the data after the “#” is removed from the URL early in the process
The response header from Auth0 is "
location: https://preview.appgyver.com/index.html?version=dev&appId=201260&pageId=DolanApp&appHash=4b12663ec462759526c0cc89636ae14e5f8b1108f7294a189aa370e57062e6ae&dolanApiVersion=2&env=appgyver.com&path=null&name=Auth%20Ext**#access_token=vRq4N5J_ByB0_zT0zAjRGfb9eNRaV5hv&expires_in=7200&token_type=Bearer&state=STATE**"
But in the address bar I just see “https://preview.appgyver.com/index.html?version=dev&appId=201260&pageId=DolanApp&appHash=4b12663ec462759526c0cc89636ae14e5f8b1108f7294a189aa370e57062e6ae&dolanApiVersion=2&env=appgyver.com&path=null&name=Auth%20Ext”
I tried adding a page parameter for access_token and I even tried a self.window.location.href
in a JavaScript node on the page mounted event but apparently that is after the # data has been removed.