using Okta.Auth.Sdk;
using Okta.Sdk.Abstractions.Configuration;
namespace DotnetAuthSdkTester
{
class Program
{
static void Main(string[] args)
{
var client = new AuthenticationClient(new OktaClientConfiguration
{
OktaDomain = "https://dotnet.oktapreview.com",
Token = "abc123notreal"
});
}
}
}
In the above code regardless of passing Token value or omitting it, I am getting same output. So I am wondering what’s the use?