This repository was archived by the owner on Dec 13, 2018. It is now read-only.
This repository was archived by the owner on Dec 13, 2018. It is now read-only.
WsFederation SaveTokens does not work #1716
Closed
Description
Hello,
Tried using WsFederationOptions.SaveTokens = true
, but the token is not being set in the AuthenticationProperties.
I have tried hooking into Events.OnSecurityTokenValidated
and saving token into authentication properties myself by
properties.StoreTokens (new [] { new AuthenticationToken { Name = tokenClaimName, Value = token } });
but with no luck. I get
This site can’t be reached
The webpage at https://localhost:44301/ might be temporarily down or it may have moved permanently to a new web address.
ERR_SPDY_PROTOCOL_ERROR
Am I missing something here?