I've been tasked with setting up a redirect page on a classic ASP site that needs to send the user to our Angular app. The Angular app uses JWT's for authentication.
Originally we thought we'd make a form and submit its necessary information (the JWT token) via POST. But apparently Angular doesn't want a POST. But I don't want to put the token in a query string, either.
What other options have we?
POST doesn't seem to be an option. Local storage and session storage don't seem to be options, since the app is on a different domain. I can't figure out how to create & use a request with an authorization header in classic ASP.
Someone suggested POSTing to the app's backend, which I can do, but I don't know where to take it from there. Any suggestions or thoughts?