收集天蓝色活动日志

时间:2019-03-22 09:45:50

标签: azure curl

我想收集天蓝色活动日志。

{curl -X GET https://management.azure.com/subscriptions/xxxxxxxxxxx/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01}

此curl命令给出错误。

  

{“错误”:{“代码”:“ AuthenticationFailed”,“消息”:“身份验证失败。缺少“授权”标头。”}}}

1 个答案:

答案 0 :(得分:1)

根据错误,看来您需要添加授权令牌。

curl -X GET -H "Authorization: Bearer [TOKEN]" -H "Content-Type: application/json" https://management.azure.com/subscriptions/xxxxxxxxxxx/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01

有关更多详细信息,您可以参考此link