Application Insights WebTests SDK
var clientId = "CLIENT_ID"; | |
var username = "user.name@email.com"; | |
var password = "PASSWORD"; | |
var aad = "https://login.microsoftonline.com/[TENANT_NAME].onmicrosoft.com"; | |
var url = "https://management.core.windows.net/"; | |
var subscriptionId = "SUBSCRIPTION_ID"; | |
var context = new AuthenticationContext(aad, false); | |
var uc = new UserPasswordCredential(username, password); | |
var result = await context.AcquireTokenAsync(url, clientId, uc).ConfigureAwait(false); | |
var credential = new TokenCloudCredentials(subscriptionId, result.AccessToken); | |
var client = new ResourceManagementClient(credential); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment