gpt4 book ai didi

azure - 是否可以在发生事件时自动将所有用户从 Azure Active Directory 转移到另一个域数据库?

转载 作者:行者123 更新时间:2023-12-03 02:34:45 24 4
gpt4 key购买 nike

我尝试使用带有/不带有用户的Graph API,并检索了用户列表。但这是手动过程。我是 Azure Active Directory 的新手,任何人都可以帮助我解决这个问题吗?

最佳答案

针对此需求,提供两种解决方案供大家引用。

解决方案1:

您可以使用 timer trigger function并将 cron 表达式设置为 0 0 0 * * * 每天(凌晨 0 点)触发该函数。然后在函数代码中请求图形 API。

解决方案 2:

您还可以使用logic app recurrence trigger并设置每天触发。 enter image description here

然后使用“HTTP”操作来请求访问 token 。 enter image description here

现在使用“Parse JSON ”操作来解析上面“HTTP”操作的响应正文。 enter image description here

“解析 JSON”中的架构应该是:

{
"properties": {
"access_token": {
"type": "string"
},
"expires_in": {
"type": "integer"
},
"ext_expires_in": {
"type": "integer"
},
"token_type": {
"type": "string"
}
},
"type": "object"
}

之后,我们可以添加另一个“HTTP”操作来请求图形 api(使用上面“解析 JSON”中的访问 token ) enter image description here

关于azure - 是否可以在发生事件时自动将所有用户从 Azure Active Directory 转移到另一个域数据库?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/63643185/

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