gpt4 book ai didi

azure - 如何使用 Microsoft 图表和 PowerShell 过滤登录并获取特定用户的身份验证要求?

转载 作者:行者123 更新时间:2023-12-03 02:32:20 25 4
gpt4 key购买 nike

如何使用 Microsoft 图表和 PowerShell 过滤登录并获取特定用户的身份验证要求?

例如:

enter image description here

最佳答案

如果您在 Microsoft Graph Explorer 中调用它,请使用:

https://graph.microsoft.com/beta/auditLogs/signIns?$filter=userPrincipalName eq '{user Principal Name}'

更新:

在 Powershell 中,使用以下命令:

$graphToken = token
$url = "https://graph.microsoft.com/beta/auditLogs/signIns?`$filter=userPrincipalName eq '{user Principal Name}'"
$result = Invoke-RestMethod -Uri $url -Headers @{Authorization = "Bearer $($graphToken)" } -Method GET -ContentType "application/json" -Debug
$result.value

关于azure - 如何使用 Microsoft 图表和 PowerShell 过滤登录并获取特定用户的身份验证要求?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/64586262/

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