- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我需要注册我的应用程序才能使用 Outlook 日历 API。我在这里创建了应用程序:https://apps.dev.microsoft.com 。我有应用程序 ID 和重定向 URI。然后我使用以下方法来获取 token :
[self.context acquireTokenWithResource:resourceID
clientId:clientID
redirectUri:redirectURI
completionBlock:^(ADAuthenticationResult *result) {
if (result.status !=AD_SUCCEEDED){
completion(result.error);
}
else{
self.accessToken = result.accessToken;
self.refreshToken = result.tokenCacheStoreItem.refreshToken;
self.familyName = result.tokenCacheStoreItem.userInformation.familyName;
self.givenName = result.tokenCacheStoreItem.userInformation.givenName;
self.userID = result.tokenCacheStoreItem.userInformation.userId;
completion(nil);
}
}];
并收到此错误:
Error with code: 15 Domain: ADAuthenticationErrorDomain ProtocolCode:unauthorized_client Details:AADSTS70001: Application '***' is not supported for this API version.
Trace ID: c5286e11-9fa9-4ddd-96a4-a29ddd6b416c
Correlation ID: c608d556-729b-4cad-80be-24d85f5558d4
Timestamp: 2016-03-14 13:05:11Z. Inner error details: Error Domain=ADAuthenticationErrorDomain Code=15 "The operation couldn’t be completed. (ADAuthenticationErrorDomain error 15.)"
请帮助我正确注册我的应用程序
更新:@dstrockis 帮助解决了这个问题。但现在我有了另外一个:有https://cocoapods.org/pods/ADALiOS使用方法
[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{
completionBlock(result.accessToken);
}
}];
但是 ADALiOS 库 3.0.0-pre3 不包含此方法。我尝试过使用
- (void)acquireTokenWithScopes:(NSArray*)scopes
additionalScopes:(NSArray*)additionalScopes
clientId:(NSString*)clientId
redirectUri:(NSURL*)redirectUri
identifier:(ADUserIdentifier*)identifier
promptBehavior:(ADPromptBehavior)promptBehavior
completionBlock:(ADAuthenticationCallback)completionBlock;
我收到以下错误:“代码错误:17 域:ADAuthenticationErrorDomain 协议(protocol)代码:(null) 详细信息:应用程序没有当前的 ViewController。内部错误详细信息:错误域=ADAuthenticationErrorDomain 代码=17 “操作无法”待完成。 (ADAuthenticationErrorDomain 错误 17。)“”。
最佳答案
您使用的 ADALiOS 库版本错误。为了使用 v2.0 端点(以及在 apps.dev.microsoft.com 注册的应用程序),您将需要使用 ADALiOS 库的预览版本 3.0.0-pre3。请参阅https://cocoapods.org/pods/ADALiOS 。有关 v2.0 端点的更多信息,请访问 aka.ms/aaddevv2。
关于Azure AD ADAuthenticationError 15-unauthorized_client-此 API 版本不支持应用程序,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36006792/
我正在使用“Google_Client”类来验证对 adwords api 的访问权限,因此: $REDIRECT_URI = 'http://localhost/GoogleAdwords/auth
我似乎无法理解为什么我会从 IdentityServer 获得 unauthorized_client。我将 oidc-client 与 Angular 4 ui 和 Web API 的 asp.ne
在我的 IS4 的 Startup.cs 中: services.AddAuthentication() .AddMicrosoftAccount(o => {
在我的 IS4 的 Startup.cs 中: services.AddAuthentication() .AddMicrosoftAccount(o => {
我已经配置了 Azure AD B2C 应用程序,但当我运行该应用程序时出现上述主题错误,可能是什么原因。 Error. An error occurred while processing your
我正在撰写有关如何使用 Postman 从 IDS4 获取 token 的演示。 密码 token 请求取自IDS4's page . [HttpGet("token")] public IActio
尝试刷新访问 token 时出现错误: 400 Bad Request {error : "unauthorized_client"} 从 Google token URI: { "error"
我正在尝试在 nodejs 应用程序上使用 Oauth 和 nodemailer 发送邮件,我在没有 Oauth 的情况下做到了,但我的密码是在代码中写的,所以我转向了 Oauth。 我只想连接自己以
我已经设置身份服务器 4 来扩展 Umbraco,因此它使用自定义角色提供程序。 一切正常,但现在当我被重定向到我的身份服务器时,我收到了这个错误: 任何人都可以阐明这个错误吗?我曾尝试在源代码管理中
在我工作的地方,我们使用 Google Apps for Work。在过去的 9 个月中,我们一直在使用 Gmail API(每天约 2,000 个请求)为我们的支持电子邮件帐户提取新电子邮件。 这是
按照此处提供的步骤 https://learn.microsoft.com/en-us/azure/active-directory/develop/quickstart-register-app 在
这是我的 mvc 与身份服务器连接的初始设置。 app.UseOpenIdConnectAuthentication(new OpenIdConnectAuthenticationOptions
我尝试在Python中访问OAuth2(代码与 http://code.google.com/p/google-api-ads-python/source/browse/trunk/examples/
我们正在尝试构建一项服务,以在我们的 gsuite 域中导出 google drive 文件。 我们正在使用 https://github.com/google/google-api-php-clie
我需要注册我的应用程序才能使用 Outlook 日历 API。我在这里创建了应用程序:https://apps.dev.microsoft.com 。我有应用程序 ID 和重定向 URI。然后我使用以
我正在尝试使用代码 ( https://developers.docusign.com/platform/auth/authcode/authcode-get-token ) 使用 DocuSign
我需要注册我的应用程序才能使用 Outlook 日历 API。我在这里创建了应用程序:https://apps.dev.microsoft.com 。我有应用程序 ID 和重定向 URI。然后我使用以
我正在尝试使用代码 ( https://developers.docusign.com/platform/auth/authcode/authcode-get-token ) 使用 DocuSign
我正在尝试将 Google 云端硬盘服务添加到我的 Objective-C 应用中,但收到: Domain=com.google.HTTPStatus Code=400 "The operation
编辑:错误发生在这段代码上: var gmail = google.gmail('v1'); gmail.users.labels.list({ auth: auth
我是一名优秀的程序员,十分优秀!