Hello, I am trying to build a Blazor web app that uses Box’s API, and I’m struggling to implement OAuth2 authentication. I followed the instructions/documentation listed here: https://developer.box.com/guides/authentication/oauth2/with-sdk/ , but I’m having issues with obtaining the authorization code once I’m redirected to my app. Below is the code I have so far; it works as expected until I reach that final step. Any help will be greatly appreciated.
-Code-
private async Task OAuth2()
{
string authorizationUrl = "https://account.box.com/api/oauth2/authorize?client_id=" + clientID + "&response_type=code";
// Configure SDK
var config = new BoxConfig(clientID, clientSecret, new Uri(redirectUrl));
var sdk = new BoxClient(config);
//Redirect user
RedirectToAuthUrl(authorizationUrl);
// Exchange code - TODO: Get auth code to exchange for access token; check after redirect.
var session = await sdk.Auth.AuthenticateAsync("[CODE]");
var client = new BoxClient(config, session);
}
private void RedirectToAuthUrl(string authUrl)
{
Navigation.NavigateTo(authUrl);
}