通过对象 ID 或主体名称获取特定用户的审核日志

发布于 2025-01-21 03:41:37 字数 455 浏览 0 评论 0原文

我正在尝试从给定对象ID发出来宾用户的Tofind。

据我所知, 只能通过审核日志找到。但是,我似乎不能只找到给定用户的审计图。我尝试了:

var directoryAudits = await graphClient.AuditLogs.DirectoryAudits.Request().Filter($"targetResources/any(c:c/id eq '{id}'").GetAsync();

但是我得到了一个不好的请求例外。有任何指示可以为特定用户获取审核日志吗?

I am trying tofind who issued a guest user from a given object id.

enter image description here

As far as I know this can only be found through audit logs. However I cannot seem to find auditlogs from a given user only. I tried:

var directoryAudits = await graphClient.AuditLogs.DirectoryAudits.Request().Filter(
quot;targetResources/any(c:c/id eq '{id}'").GetAsync();

But I get an bad request exception. Any pointers to get audit logs for a specific user?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

临走之时 2025-01-28 03:41:37

看起来过滤器查询缺少 any 的右括号 )

var directoryAudits = await graphClient.AuditLogs.
DirectoryAudits
.Request()
.Filter($"targetResources/any(c:c/id eq '{id}')")
.GetAsync();

Looks like that filter query is missing right bracket ) for any

var directoryAudits = await graphClient.AuditLogs.
DirectoryAudits
.Request()
.Filter(
quot;targetResources/any(c:c/id eq '{id}')")
.GetAsync();
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文