gpt4 book ai didi

ios - ios 中的 Windows azure 事件目录身份验证

转载 作者:行者123 更新时间:2023-11-29 12:51:21 26 4
gpt4 key购买 nike

任何在 windows azure 和 iOS 上工作过的人,以及如何访问 windows azure 事件目录......请帮助我下面的主题我将在编码中设置下面提到的主题的值是什么......

WAAD_LOGIN_URLWAAD_DOMAINWAAD_CLIENT_IDWAAD_REDIRECT_URIWAAD_RESOURCEWAAD_SERVICE_ENDPOINT

请提前向我提供帮助:)

最佳答案

您可能需要检查开源 github 库以进行身份​​验证:https://github.com/MSOpenTech/azure-activedirectory-library-for-ios .我目前是主要贡献者,所以请随时向我询问有关图书馆的更多问题。自述文件将让您了解如何验证和开始使用提供的访问 token 。这是获取访问 token 的示例代码。请记住,访问 token 是在内部缓存的,因此您只需在每次需要时调用下面的 acquireTokenWithResource,该库负责身份验证(如果需要,请向用户询问凭据)并通过 OAuth 2.0 协议(protocol)利用刷新 token .

ADAuthenticationError *error;
authContext = [ADAuthenticationContext authenticationContextWithAuthority:authority
error:&error];

NSURL *redirectUri = [NSURL URLWithString:redirectUriString];
[authContext acquireTokenWithResource:resourceId
clientId:clientId
redirectUri:redirectUri
completionBlock:^(ADAuthenticationResult *result) {
if (AD_SUCCEEDED != result.status){
// display error on the screen
[self showError:result.error.errorDetails];
}
else{
//Use result.accessToken to access any services.
}
}];

关于ios - ios 中的 Windows azure 事件目录身份验证,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22371401/

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