-1

我有一个使用 appreg.aspx 注册的提供商托管的 SharePoint 应用程序。我想使用 Azure Function 获取该应用程序的详细信息,例如应用程序名称、客户端密码开始和结束日期,以便我可以在应用程序客户端密码过期之前发送警报。我已经使用 PowerShell 脚本将日期增加到 3 年。

我经历了这个问题,关于客户端密钥到期的警报。但似乎解决方案较旧。我使用 PowerShell 脚本来获取应用程序详细信息,但我想使用 Azure Function,因为我已经拥有很少的其他功能,因此维护它们会更容易。

有没有办法使用 Graph REST API 获取应用程序详细信息?

谢谢!

4

1 回答 1

0

用于https://graph.microsoft.com/beta/servicePrincipals?$filter=appId eq '{app id of your app registered in SharePoint}'获取应用程序详细信息。

您可以在响应中找到客户端密码 endDateTime(还包括应用程序名称):

        "passwordCredentials": [
            {
                "customKeyIdentifier": null,
                "endDateTime": "2021-01-16T01:56:20.4750596Z",
                "keyId": "653b5550-23c0-4bff-9fab-f34e91d23dc6",
                "startDateTime": "2020-01-16T01:56:20.4750596Z",
                "secretText": null,
                "hint": null,
                "displayName": null
            }

请参阅此处的参考。您可以在Microsoft Graph Explorer中进行 qucik 测试。

于 2020-01-16T02:34:38.413 回答