我希望从将托管在 Azure Web 应用程序上的 ac# 应用程序启动 Azure Runbook。
我正在使用证书身份验证(只是为了测试我可以连接和检索一些数据)
到目前为止,这是我的代码:
var cert = ConfigurationManager.AppSettings["mgmtCertificate"];
var creds = new Microsoft.Azure.CertificateCloudCredentials("<my-sub-id>",
new X509Certificate2(Convert.FromBase64String(cert)));
var client = new Microsoft.Azure.Management.Automation.AutomationManagementClient(creds, new Uri("https://management.core.windows.net/"));
var content = client.Runbooks.List("<resource-group-id>", "<automation-account-name>");
每次我运行这个,无论我使用什么证书,我都会得到同样的错误:
An unhandled exception of type 'Hyak.Common.CloudException' occurred in Microsoft.Threading.Tasks.dll
Additional information: ForbiddenError: The server failed to authenticate the request. Verify that the certificate is valid and is associated with this subscription.
我已经尝试下载设置文件,其中包含您在启动 Azure 帐户时获得的自动生成的管理证书......我所做的任何事情都不会让我与任何 Azure 订阅交谈
我在这里错过了一些基本的东西吗?
编辑:一些附加信息...
所以我决定创建一个应用程序并使用 JWT 身份验证方法。
我添加了一个应用程序,授予 Azure 服务管理 API 的应用程序权限,并确保用户是共同管理员,即使使用令牌,我仍然会遇到相同的错误......
const string tenantId = "xx";
const string clientId = "xx";
var context = new AuthenticationContext(string.Format("https://login.windows.net/{0}", tenantId));
var user = "<user>";
var pwd = "<pass>";
var userCred = new UserCredential(user, pwd);
var result = context.AcquireToken("https://management.core.windows.net/", clientId, userCred);
var token = result.CreateAuthorizationHeader().Substring("Bearer ".Length); // Token comes back fine and I can inspect and see that it's valid for 1 hour - all looks ok...
var sub = "<subscription-id>";
var creds = new TokenCloudCredentials(sub, token);
var client = new AutomationManagementClient(creds, new Uri("https://management.core.windows.net/"));
var content = client.Runbooks.List("<resource-group>", "<automation-id>");
我也尝试过使用其他 Azure 库(如身份验证、数据中心等),但我得到了同样的错误:
ForbiddenError: The server failed to authenticate the request. Verify that the certificate is valid and is associated with this subscription.
我确定它只是 1 个复选框,我需要在那个单一的管理门户中的某个地方打勾,但我已经遵循了一些关于如何做到这一点的教程,但最终都出现了这个错误......