gpt4 book ai didi

azure - 如何使用 C# 访问 Azure Webjobs 日志

转载 作者:行者123 更新时间:2023-12-03 04:51:39 25 4
gpt4 key购买 nike

我有一个按计划运行的 azure webjob,我需要访问运行日志和每次运行的输出。

我遇到了 kudu api,但无法进一步进行,因为我不确定要通过我的网络请求传递哪些凭据。

示例代码:

private static void GetAPIData2()
{
String Url = "https://MyWebsite.scm.azurewebsites.net/azurejobs/api/jobs";
WebRequest request = WebRequest.Create(Url);

request.ContentType = "application/json";
request.Method = "GET";

//Your Azure FTP deployment credentials here
request.Credentials = new NetworkCredential("What should go here?", "and here?");

WebResponse response = request.GetResponse();
Console.WriteLine(response.ToString());
}

如果使用我的 Azure 管理员帐户,我会收到 401 Unauthorized。

我应该使用什么用户名和密码进行身份验证?

最佳答案

请查看this page了解您可以传递给这些 API 的凭据类型。

关于azure - 如何使用 C# 访问 Azure Webjobs 日志,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32854113/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com