public async Task ValidateAccessToken(OAuthValidateTokenContext <IAccessToken> context) { var result = new TokenValidationResult <IAccessToken>(context.Token); if (context.Token == null || string.IsNullOrWhiteSpace(context.Token.Ticket)) { context.Rejected(); return; } context.Validated(); }
public async Task ValidateRefreshToken(OAuthValidateTokenContext <IRefreshToken> context) { if (!string.IsNullOrWhiteSpace(context.AuthenticationTokenReceiveContext.Token) && context.Token != null) { context.Validated(); } else { context.Rejected(); } }