I am learning to work with Stormpath. It is necessary to make authorization through Id Site. I created Action'ny request and response and successfully received an account. But what to do next?

public async Task<RedirectResult> Callback(string jwtResponse) { var client = Request.GetStormpathClient(); var app = await client.GetApplicationAsync(appUrl); var requestDescriptor = HttpRequests.NewRequestDescriptor() .WithMethod("GET") .WithUri("http://localhost:50084/Auth/Callback?jwtResponse=" + jwtResponse) .Build(); var idSiteListener = app.NewIdSiteAsyncCallbackHandler(requestDescriptor); var accountResult = await idSiteListener.GetAccountResultAsync(); var account = accountResult.GetAccountAsync().Result; //Аккаунт //Что нужно сделать что бы сказать приложению что пользователь авторизировался return Redirect("/"); } 

0