using Auth0Auth0;using System.Threading.Tasks;namespace Usage;public class Example{ public async Task Do() { var client = new Auth0Auth0Client( token: "<token>" ); await client.Organization.Configuration.IdentityProviders.GetAsync(); }}
Retrieve the Connection Profile for this application. You should cache this information as it does not change frequently.
GET
/
config
/
identity-providers
C#
using Auth0Auth0;using System.Threading.Tasks;namespace Usage;public class Example{ public async Task Do() { var client = new Auth0Auth0Client( token: "<token>" ); await client.Organization.Configuration.IdentityProviders.GetAsync(); }}