Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Authentication Start by adding the ADAL nuget package. Install-Package Microsoft.IdentityModel.Clients.ActiveDirectory Then add this file to your project: The first line of code in your app will be… string token = AuthHelper.GetAuthorizationHeader(); That’s it for authentication! Setup the Resource Management Client Start by adding the Azure Resource Management NuGet package. Install-Package Microsoft.Azure.Management.Resources Then...