C# app authenticate EWS using OAuth throwing error AADSTS65005: Invalid resource
C# test application to authenticate EWS using OAuth is throwing the following error
Error Details:
AADSTS65005: Invalid resource. The client has requested access to a resource which is not listed in the requested permissions in the client's application registration. Client app ID:xxxxxxxxx
We have followed the steps provided in the link to register the application
https://docs.microsoft.com/en-us/exchange/client-developer/exchange-web-services/how-to-authenticate-an-ews-application-by-using-oauth
and trying to test the code from Authenticate an EWS application by using OAuth
Please help to know why this code is throwing an error AADSTS65005: Invalid resource.
also want to know where to grant full_access_as_user for this application that I registered in the https://apps.dev.microsoft.com.
c# oauth exchangewebservices
add a comment |
C# test application to authenticate EWS using OAuth is throwing the following error
Error Details:
AADSTS65005: Invalid resource. The client has requested access to a resource which is not listed in the requested permissions in the client's application registration. Client app ID:xxxxxxxxx
We have followed the steps provided in the link to register the application
https://docs.microsoft.com/en-us/exchange/client-developer/exchange-web-services/how-to-authenticate-an-ews-application-by-using-oauth
and trying to test the code from Authenticate an EWS application by using OAuth
Please help to know why this code is throwing an error AADSTS65005: Invalid resource.
also want to know where to grant full_access_as_user for this application that I registered in the https://apps.dev.microsoft.com.
c# oauth exchangewebservices
The error is telling you that in the application registration you have created it doesn't list the resource eg outlook.office365.com your trying to access. So that tells you there is problem with the Application registration. Maybe try testing oAuth using the EWSEditor github.com/dseph/EwsEditor/releases
– Glen Scales
Jan 2 at 23:20
Thanks for the guidance Glen. I checked EWSEditor. I could successfully login using Oauth using default values provided in the application for the RedirectURL and Client app id. However when i provide the Client app id from the registration i have done in the portal (apps.dev.microsoft.com) is not working and throws the same error as before "AADSTS65005: Invalid resource."
– Kiran Kumar
Jan 3 at 15:23
Thanks Glen. I checked EWSEditor. I could successfully login using Oauth using default values provided in the application for the RedirectURL and Client app id. But, when i provide my app Client app id from apps.dev.microsoft.com it is not working & throws error "AADSTS65005: Invalid resource. The client has requested access to a resource which is not listed in the requested permissions in the client's application registration." I think i am missing something in registration & permissions, any pointers on how to register the application & required permissions to be granted will help.
– Kiran Kumar
Jan 3 at 15:32
With EWS you only have one permission that will work maybe post a screen shot of your registration.
– Glen Scales
Jan 7 at 4:00
add a comment |
C# test application to authenticate EWS using OAuth is throwing the following error
Error Details:
AADSTS65005: Invalid resource. The client has requested access to a resource which is not listed in the requested permissions in the client's application registration. Client app ID:xxxxxxxxx
We have followed the steps provided in the link to register the application
https://docs.microsoft.com/en-us/exchange/client-developer/exchange-web-services/how-to-authenticate-an-ews-application-by-using-oauth
and trying to test the code from Authenticate an EWS application by using OAuth
Please help to know why this code is throwing an error AADSTS65005: Invalid resource.
also want to know where to grant full_access_as_user for this application that I registered in the https://apps.dev.microsoft.com.
c# oauth exchangewebservices
C# test application to authenticate EWS using OAuth is throwing the following error
Error Details:
AADSTS65005: Invalid resource. The client has requested access to a resource which is not listed in the requested permissions in the client's application registration. Client app ID:xxxxxxxxx
We have followed the steps provided in the link to register the application
https://docs.microsoft.com/en-us/exchange/client-developer/exchange-web-services/how-to-authenticate-an-ews-application-by-using-oauth
and trying to test the code from Authenticate an EWS application by using OAuth
Please help to know why this code is throwing an error AADSTS65005: Invalid resource.
also want to know where to grant full_access_as_user for this application that I registered in the https://apps.dev.microsoft.com.
c# oauth exchangewebservices
c# oauth exchangewebservices
asked Jan 2 at 14:01


Kiran KumarKiran Kumar
91
91
The error is telling you that in the application registration you have created it doesn't list the resource eg outlook.office365.com your trying to access. So that tells you there is problem with the Application registration. Maybe try testing oAuth using the EWSEditor github.com/dseph/EwsEditor/releases
– Glen Scales
Jan 2 at 23:20
Thanks for the guidance Glen. I checked EWSEditor. I could successfully login using Oauth using default values provided in the application for the RedirectURL and Client app id. However when i provide the Client app id from the registration i have done in the portal (apps.dev.microsoft.com) is not working and throws the same error as before "AADSTS65005: Invalid resource."
– Kiran Kumar
Jan 3 at 15:23
Thanks Glen. I checked EWSEditor. I could successfully login using Oauth using default values provided in the application for the RedirectURL and Client app id. But, when i provide my app Client app id from apps.dev.microsoft.com it is not working & throws error "AADSTS65005: Invalid resource. The client has requested access to a resource which is not listed in the requested permissions in the client's application registration." I think i am missing something in registration & permissions, any pointers on how to register the application & required permissions to be granted will help.
– Kiran Kumar
Jan 3 at 15:32
With EWS you only have one permission that will work maybe post a screen shot of your registration.
– Glen Scales
Jan 7 at 4:00
add a comment |
The error is telling you that in the application registration you have created it doesn't list the resource eg outlook.office365.com your trying to access. So that tells you there is problem with the Application registration. Maybe try testing oAuth using the EWSEditor github.com/dseph/EwsEditor/releases
– Glen Scales
Jan 2 at 23:20
Thanks for the guidance Glen. I checked EWSEditor. I could successfully login using Oauth using default values provided in the application for the RedirectURL and Client app id. However when i provide the Client app id from the registration i have done in the portal (apps.dev.microsoft.com) is not working and throws the same error as before "AADSTS65005: Invalid resource."
– Kiran Kumar
Jan 3 at 15:23
Thanks Glen. I checked EWSEditor. I could successfully login using Oauth using default values provided in the application for the RedirectURL and Client app id. But, when i provide my app Client app id from apps.dev.microsoft.com it is not working & throws error "AADSTS65005: Invalid resource. The client has requested access to a resource which is not listed in the requested permissions in the client's application registration." I think i am missing something in registration & permissions, any pointers on how to register the application & required permissions to be granted will help.
– Kiran Kumar
Jan 3 at 15:32
With EWS you only have one permission that will work maybe post a screen shot of your registration.
– Glen Scales
Jan 7 at 4:00
The error is telling you that in the application registration you have created it doesn't list the resource eg outlook.office365.com your trying to access. So that tells you there is problem with the Application registration. Maybe try testing oAuth using the EWSEditor github.com/dseph/EwsEditor/releases
– Glen Scales
Jan 2 at 23:20
The error is telling you that in the application registration you have created it doesn't list the resource eg outlook.office365.com your trying to access. So that tells you there is problem with the Application registration. Maybe try testing oAuth using the EWSEditor github.com/dseph/EwsEditor/releases
– Glen Scales
Jan 2 at 23:20
Thanks for the guidance Glen. I checked EWSEditor. I could successfully login using Oauth using default values provided in the application for the RedirectURL and Client app id. However when i provide the Client app id from the registration i have done in the portal (apps.dev.microsoft.com) is not working and throws the same error as before "AADSTS65005: Invalid resource."
– Kiran Kumar
Jan 3 at 15:23
Thanks for the guidance Glen. I checked EWSEditor. I could successfully login using Oauth using default values provided in the application for the RedirectURL and Client app id. However when i provide the Client app id from the registration i have done in the portal (apps.dev.microsoft.com) is not working and throws the same error as before "AADSTS65005: Invalid resource."
– Kiran Kumar
Jan 3 at 15:23
Thanks Glen. I checked EWSEditor. I could successfully login using Oauth using default values provided in the application for the RedirectURL and Client app id. But, when i provide my app Client app id from apps.dev.microsoft.com it is not working & throws error "AADSTS65005: Invalid resource. The client has requested access to a resource which is not listed in the requested permissions in the client's application registration." I think i am missing something in registration & permissions, any pointers on how to register the application & required permissions to be granted will help.
– Kiran Kumar
Jan 3 at 15:32
Thanks Glen. I checked EWSEditor. I could successfully login using Oauth using default values provided in the application for the RedirectURL and Client app id. But, when i provide my app Client app id from apps.dev.microsoft.com it is not working & throws error "AADSTS65005: Invalid resource. The client has requested access to a resource which is not listed in the requested permissions in the client's application registration." I think i am missing something in registration & permissions, any pointers on how to register the application & required permissions to be granted will help.
– Kiran Kumar
Jan 3 at 15:32
With EWS you only have one permission that will work maybe post a screen shot of your registration.
– Glen Scales
Jan 7 at 4:00
With EWS you only have one permission that will work maybe post a screen shot of your registration.
– Glen Scales
Jan 7 at 4:00
add a comment |
0
active
oldest
votes
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f54007692%2fc-sharp-app-authenticate-ews-using-oauth-throwing-error-aadsts65005-invalid-res%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f54007692%2fc-sharp-app-authenticate-ews-using-oauth-throwing-error-aadsts65005-invalid-res%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
The error is telling you that in the application registration you have created it doesn't list the resource eg outlook.office365.com your trying to access. So that tells you there is problem with the Application registration. Maybe try testing oAuth using the EWSEditor github.com/dseph/EwsEditor/releases
– Glen Scales
Jan 2 at 23:20
Thanks for the guidance Glen. I checked EWSEditor. I could successfully login using Oauth using default values provided in the application for the RedirectURL and Client app id. However when i provide the Client app id from the registration i have done in the portal (apps.dev.microsoft.com) is not working and throws the same error as before "AADSTS65005: Invalid resource."
– Kiran Kumar
Jan 3 at 15:23
Thanks Glen. I checked EWSEditor. I could successfully login using Oauth using default values provided in the application for the RedirectURL and Client app id. But, when i provide my app Client app id from apps.dev.microsoft.com it is not working & throws error "AADSTS65005: Invalid resource. The client has requested access to a resource which is not listed in the requested permissions in the client's application registration." I think i am missing something in registration & permissions, any pointers on how to register the application & required permissions to be granted will help.
– Kiran Kumar
Jan 3 at 15:32
With EWS you only have one permission that will work maybe post a screen shot of your registration.
– Glen Scales
Jan 7 at 4:00