User-29703693 posted
Thanks yij sun. I don't believe I can use Web Storage, because "site2.com" cannot access a cookie or session variable that was set on site1.com. The stackoverlow flow may be more complex than what I need to do but I'll read through and reference
it.
One thing I could do is set a form up on site1.com like this:
<body onload='document.forms["form"].submit()'>
<form name='form' action='https://site2.com/LogIn' method='post'>
<input type='hidden' name='jwt' value='@Model.jwt'>
</form>
</body>
That would submit the jwt via post instead of through the querystring. However, I would have to turn off the antiforgerytoken - [IgnoreAntiforgeryToken(Order = 1001)] in order for site2.com to receive post data from site1.com. I'll need to look
into if that's ok for this situation