Replies: 1 comment
-
You would fetch it before assignment: var externalSecret = await client....
builder.Services.AddAuth0AuthenticationClient(config =>
{
config.Domain = domain;
config.ClientId = builder.Configuration["Auth0:ClientId"];
config.ClientSecret = externalSecret
}); If you wanted it baked into the |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi,
I would like to know what is the best way to get client secret asynchronously from external source in the
AddAuth0AuthenticationClient()
Beta Was this translation helpful? Give feedback.
All reactions