Is there any way I can access the auth ticket info set on the auth server when it is separate from the resource server?
On the auth server I can access all the ticket properties I set using
var authInfo = await Request.HttpContext.Authentication.GetAuthenticateInfoAsync(OAuthValidationDefaults.AuthenticationScheme);
var myProperty= authInfo.Properties.Items.FirstOrDefault(p => p.Key.Equals("property_name"));
However, when I try this while on the resource server, I am unable to see the same properties.