diff --git a/src/Components/WebAssembly/WebAssembly.Authentication/src/Services/RemoteAuthenticationService.cs b/src/Components/WebAssembly/WebAssembly.Authentication/src/Services/RemoteAuthenticationService.cs index def3ff132dd0..db468aa6927a 100644 --- a/src/Components/WebAssembly/WebAssembly.Authentication/src/Services/RemoteAuthenticationService.cs +++ b/src/Components/WebAssembly/WebAssembly.Authentication/src/Services/RemoteAuthenticationService.cs @@ -143,10 +143,12 @@ public virtual async Task } /// - public virtual async ValueTask RequestAccessToken() + public async ValueTask RequestAccessTokenInner(AccessTokenRequestOptions options) { await EnsureAuthService(); - var result = await JsRuntime.InvokeAsync("AuthenticationService.getAccessToken"); + var result = await options == null + ? JsRuntime.InvokeAsync("AuthenticationService.getAccessToken") + : JsRuntime.InvokeAsync("AuthenticationService.getAccessToken", options); if (!Enum.TryParse(result.Status, ignoreCase: true, out var parsedStatus)) { @@ -163,29 +165,10 @@ public virtual async ValueTask RequestAccessToken() } /// - public virtual async ValueTask RequestAccessToken(AccessTokenRequestOptions options) - { - if (options is null) - { - throw new ArgumentNullException(nameof(options)); - } - - await EnsureAuthService(); - var result = await JsRuntime.InvokeAsync("AuthenticationService.getAccessToken", options); - - if (!Enum.TryParse(result.Status, ignoreCase: true, out var parsedStatus)) - { - throw new InvalidOperationException($"Invalid access token result status '{result.Status ?? "(null)"}'"); - } + public virtual async ValueTask RequestAccessToken() => RequestAccessTokenInner(null); - if (parsedStatus == AccessTokenResultStatus.RequiresRedirect) - { - var redirectUrl = GetRedirectUrl(options.ReturnUrl); - result.RedirectUrl = redirectUrl.ToString(); - } - - return new AccessTokenResult(parsedStatus, result.Token, result.RedirectUrl); - } + /// + public virtual async ValueTask RequestAccessToken(AccessTokenRequestOptions options) => RequestAccessTokenInner(options ?? throw new ArgumentNullException(nameof(options))); private Uri GetRedirectUrl(string customReturnUrl) {