Microsoft Graph Subscription ExtensionError - Delete / Update The 2019 Stack Overflow Developer Survey Results Are InDeleting Microsoft graph fails with ExtensionError“Not Found” error in updating Microsoft Graph subscription for calendar mailboxWhy is Microsoft Graph list subscriptions returning what it is?Microsoft Graph Subscriptions - Exchange Online resources are not supported for MSA requestsAzure ad and Azure ad b2c token validation failureHow to filter group members in Microsoft graph API?Subscription validation request failed. Response must exactly match validationToken query parameterMicrosoft Graph subscription expirationDateTime incorrectMicrosoft Graph update subscription always results in 403 Forbidden errorMicrosoft Graph DELETE subscription request failsMicrosoft Graph .NET Client Library get verification recordGraph API Not retrieving data properlyMicrosoft graph delta and user licenses
Landlord wants to switch my lease to a "Land contract" to "get back at the city"
Extreme, unacceptable situation and I can't attend work tomorrow morning
Is "plugging out" electronic devices an American expression?
Inflated grade on resume at previous job, might former employer tell new employer?
What spell level should this homebrew After-Image spell be?
What do hard-Brexiteers want with respect to the Irish border?
Potential by Assembling Charges
Limit to 0 ambiguity
Why is Grand Jury testimony secret?
Why don't Unix/Linux systems traverse through directories until they find the required version of a linked library?
What is the motivation for a law requiring 2 parties to consent for recording a conversation
How to answer pointed "are you quitting" questioning when I don't want them to suspect
Return to UK after being refused
How to make payment on the internet without leaving a money trail?
Which Sci-Fi work first showed weapon of galactic-scale mass destruction?
Is this food a bread or a loaf?
aging parents with no investments
Should I write numbers in words or as numerals when there are multiple next to each other?
Inline version of a function returns different value than non-inline version
Why is it "Tumoren" and not "Tumore"?
Is an up-to-date browser secure on an out-of-date OS?
What is the use of option -o in the useradd command?
Falsification in Math vs Science
Could a US political party gain complete control over the government by removing checks & balances?
Microsoft Graph Subscription ExtensionError - Delete / Update
The 2019 Stack Overflow Developer Survey Results Are InDeleting Microsoft graph fails with ExtensionError“Not Found” error in updating Microsoft Graph subscription for calendar mailboxWhy is Microsoft Graph list subscriptions returning what it is?Microsoft Graph Subscriptions - Exchange Online resources are not supported for MSA requestsAzure ad and Azure ad b2c token validation failureHow to filter group members in Microsoft graph API?Subscription validation request failed. Response must exactly match validationToken query parameterMicrosoft Graph subscription expirationDateTime incorrectMicrosoft Graph update subscription always results in 403 Forbidden errorMicrosoft Graph DELETE subscription request failsMicrosoft Graph .NET Client Library get verification recordGraph API Not retrieving data properlyMicrosoft graph delta and user licenses
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty height:90px;width:728px;box-sizing:border-box;
Issue
- I currently have an Azure Active Directory Application that has a Microsoft Graph Webhook Subscription listening for new emails (messages) in a specified mailbox.
- The subscription has a scheduled task that renews the subscription's expiration date via an Update request. The subscription is targeted using its MS Graph Provided ID.
Any DELETE or UPDATE request against this specific subscription fails. (See 'Error Response' below.)
Question
- I realize that this may be the same issue / bug as the question presented here: https://stackoverflow.com/a/53111286/7902641
- Has there been any fix / resolution / or workaround for this?
- If there has been a fix or this is a different problem altogether, what can I do to resolve this specific issue?
- Thanks!
Error Response
"error":
"code": "ExtensionError",
"message": "Operation: Delete; Exception: [Status Code: NotFound; Reason: The subscription with Id 'Q0IzOUZCMTYtMTk4OC00OEZDLUFFQjQtNzI4NTU1MDREMkVDXzQ5RDk2MzI3LUFDRDEtNEE2QS05QTQ1LUYwQ0ZGQjgwNEQ0Qg==' is not found.]",
"innerError":
"request-id": "e83fe463-....-....-....-76eb35e2e697",
"date": "2019-03-22T02:35:14"
Extra Info
- Somehow the Microsoft Graph ID for the subscription is...transformed? The original subscription ID is ( 528b79f1-....-....-....-360c0e1149e9 ) and the returned target ID is: ( Q0IzOUZ ... NEQ0Qg== ) .
- The executing UPDATE request originates from an ASP.NET CORE application, using the Microsoft Graph SDK (C#).
- https://github.com/microsoftgraph/msgraph-sdk-dotnet
- However I have eliminated the SDK as the origination of the problem -- using a REST API tester (Insomnia), I achieve the same error result. The request URL looks like:
- https://graph.microsoft.com/v1.0/subscriptions/528b79f1-....-....-....-360c0e1149e9
- I have also attempted to use the BETA version instead of v1.0. Unfortunately I get the same error result.
Configuration
- Application:
- Registered Azure Active Directory Daemon Application
- Authentication Library:
- MSAL
- https://github.com/AzureAD/microsoft-authentication-library-for-dotnet
- Calling Application (generating the update / delete request):
- ASP.NET CORE (2.1) - Web Api
- Using MS Graph SDK (Github link posted above)
== Update ==
- The subscription in question has now expired and disappeared from my application's subscriptions list (timestamp, PST: 3/22/2019 8:45:22 AM).
- I will no longer be able to test against it (sorry S.O. posterity!).
- However, good news: now that the problem child (subscription) in question is gone, I was able to create a new subscription and restart my affected service. I am able to successfully submit get / update / delete requests against any newly created subscriptions.
c# azure microsoft-graph microsoft-graph-sdks
add a comment |
Issue
- I currently have an Azure Active Directory Application that has a Microsoft Graph Webhook Subscription listening for new emails (messages) in a specified mailbox.
- The subscription has a scheduled task that renews the subscription's expiration date via an Update request. The subscription is targeted using its MS Graph Provided ID.
Any DELETE or UPDATE request against this specific subscription fails. (See 'Error Response' below.)
Question
- I realize that this may be the same issue / bug as the question presented here: https://stackoverflow.com/a/53111286/7902641
- Has there been any fix / resolution / or workaround for this?
- If there has been a fix or this is a different problem altogether, what can I do to resolve this specific issue?
- Thanks!
Error Response
"error":
"code": "ExtensionError",
"message": "Operation: Delete; Exception: [Status Code: NotFound; Reason: The subscription with Id 'Q0IzOUZCMTYtMTk4OC00OEZDLUFFQjQtNzI4NTU1MDREMkVDXzQ5RDk2MzI3LUFDRDEtNEE2QS05QTQ1LUYwQ0ZGQjgwNEQ0Qg==' is not found.]",
"innerError":
"request-id": "e83fe463-....-....-....-76eb35e2e697",
"date": "2019-03-22T02:35:14"
Extra Info
- Somehow the Microsoft Graph ID for the subscription is...transformed? The original subscription ID is ( 528b79f1-....-....-....-360c0e1149e9 ) and the returned target ID is: ( Q0IzOUZ ... NEQ0Qg== ) .
- The executing UPDATE request originates from an ASP.NET CORE application, using the Microsoft Graph SDK (C#).
- https://github.com/microsoftgraph/msgraph-sdk-dotnet
- However I have eliminated the SDK as the origination of the problem -- using a REST API tester (Insomnia), I achieve the same error result. The request URL looks like:
- https://graph.microsoft.com/v1.0/subscriptions/528b79f1-....-....-....-360c0e1149e9
- I have also attempted to use the BETA version instead of v1.0. Unfortunately I get the same error result.
Configuration
- Application:
- Registered Azure Active Directory Daemon Application
- Authentication Library:
- MSAL
- https://github.com/AzureAD/microsoft-authentication-library-for-dotnet
- Calling Application (generating the update / delete request):
- ASP.NET CORE (2.1) - Web Api
- Using MS Graph SDK (Github link posted above)
== Update ==
- The subscription in question has now expired and disappeared from my application's subscriptions list (timestamp, PST: 3/22/2019 8:45:22 AM).
- I will no longer be able to test against it (sorry S.O. posterity!).
- However, good news: now that the problem child (subscription) in question is gone, I was able to create a new subscription and restart my affected service. I am able to successfully submit get / update / delete requests against any newly created subscriptions.
c# azure microsoft-graph microsoft-graph-sdks
We are observing the same behaviour from both Beta and v1.0. This seems like a regression, since it has been working fine for the last ~8 months. Is there a fix for this? Thanks
– Chris Vo
Mar 25 at 10:53
@ChrisVo This being a regression issue seems to be likely, but is (so far) unconfirmed. I am still not aware of a fix. However I have not yet encountered the issue as described in the post with my current Graph subscriptions.
– Tyler Crawford
Mar 26 at 16:00
add a comment |
Issue
- I currently have an Azure Active Directory Application that has a Microsoft Graph Webhook Subscription listening for new emails (messages) in a specified mailbox.
- The subscription has a scheduled task that renews the subscription's expiration date via an Update request. The subscription is targeted using its MS Graph Provided ID.
Any DELETE or UPDATE request against this specific subscription fails. (See 'Error Response' below.)
Question
- I realize that this may be the same issue / bug as the question presented here: https://stackoverflow.com/a/53111286/7902641
- Has there been any fix / resolution / or workaround for this?
- If there has been a fix or this is a different problem altogether, what can I do to resolve this specific issue?
- Thanks!
Error Response
"error":
"code": "ExtensionError",
"message": "Operation: Delete; Exception: [Status Code: NotFound; Reason: The subscription with Id 'Q0IzOUZCMTYtMTk4OC00OEZDLUFFQjQtNzI4NTU1MDREMkVDXzQ5RDk2MzI3LUFDRDEtNEE2QS05QTQ1LUYwQ0ZGQjgwNEQ0Qg==' is not found.]",
"innerError":
"request-id": "e83fe463-....-....-....-76eb35e2e697",
"date": "2019-03-22T02:35:14"
Extra Info
- Somehow the Microsoft Graph ID for the subscription is...transformed? The original subscription ID is ( 528b79f1-....-....-....-360c0e1149e9 ) and the returned target ID is: ( Q0IzOUZ ... NEQ0Qg== ) .
- The executing UPDATE request originates from an ASP.NET CORE application, using the Microsoft Graph SDK (C#).
- https://github.com/microsoftgraph/msgraph-sdk-dotnet
- However I have eliminated the SDK as the origination of the problem -- using a REST API tester (Insomnia), I achieve the same error result. The request URL looks like:
- https://graph.microsoft.com/v1.0/subscriptions/528b79f1-....-....-....-360c0e1149e9
- I have also attempted to use the BETA version instead of v1.0. Unfortunately I get the same error result.
Configuration
- Application:
- Registered Azure Active Directory Daemon Application
- Authentication Library:
- MSAL
- https://github.com/AzureAD/microsoft-authentication-library-for-dotnet
- Calling Application (generating the update / delete request):
- ASP.NET CORE (2.1) - Web Api
- Using MS Graph SDK (Github link posted above)
== Update ==
- The subscription in question has now expired and disappeared from my application's subscriptions list (timestamp, PST: 3/22/2019 8:45:22 AM).
- I will no longer be able to test against it (sorry S.O. posterity!).
- However, good news: now that the problem child (subscription) in question is gone, I was able to create a new subscription and restart my affected service. I am able to successfully submit get / update / delete requests against any newly created subscriptions.
c# azure microsoft-graph microsoft-graph-sdks
Issue
- I currently have an Azure Active Directory Application that has a Microsoft Graph Webhook Subscription listening for new emails (messages) in a specified mailbox.
- The subscription has a scheduled task that renews the subscription's expiration date via an Update request. The subscription is targeted using its MS Graph Provided ID.
Any DELETE or UPDATE request against this specific subscription fails. (See 'Error Response' below.)
Question
- I realize that this may be the same issue / bug as the question presented here: https://stackoverflow.com/a/53111286/7902641
- Has there been any fix / resolution / or workaround for this?
- If there has been a fix or this is a different problem altogether, what can I do to resolve this specific issue?
- Thanks!
Error Response
"error":
"code": "ExtensionError",
"message": "Operation: Delete; Exception: [Status Code: NotFound; Reason: The subscription with Id 'Q0IzOUZCMTYtMTk4OC00OEZDLUFFQjQtNzI4NTU1MDREMkVDXzQ5RDk2MzI3LUFDRDEtNEE2QS05QTQ1LUYwQ0ZGQjgwNEQ0Qg==' is not found.]",
"innerError":
"request-id": "e83fe463-....-....-....-76eb35e2e697",
"date": "2019-03-22T02:35:14"
Extra Info
- Somehow the Microsoft Graph ID for the subscription is...transformed? The original subscription ID is ( 528b79f1-....-....-....-360c0e1149e9 ) and the returned target ID is: ( Q0IzOUZ ... NEQ0Qg== ) .
- The executing UPDATE request originates from an ASP.NET CORE application, using the Microsoft Graph SDK (C#).
- https://github.com/microsoftgraph/msgraph-sdk-dotnet
- However I have eliminated the SDK as the origination of the problem -- using a REST API tester (Insomnia), I achieve the same error result. The request URL looks like:
- https://graph.microsoft.com/v1.0/subscriptions/528b79f1-....-....-....-360c0e1149e9
- I have also attempted to use the BETA version instead of v1.0. Unfortunately I get the same error result.
Configuration
- Application:
- Registered Azure Active Directory Daemon Application
- Authentication Library:
- MSAL
- https://github.com/AzureAD/microsoft-authentication-library-for-dotnet
- Calling Application (generating the update / delete request):
- ASP.NET CORE (2.1) - Web Api
- Using MS Graph SDK (Github link posted above)
== Update ==
- The subscription in question has now expired and disappeared from my application's subscriptions list (timestamp, PST: 3/22/2019 8:45:22 AM).
- I will no longer be able to test against it (sorry S.O. posterity!).
- However, good news: now that the problem child (subscription) in question is gone, I was able to create a new subscription and restart my affected service. I am able to successfully submit get / update / delete requests against any newly created subscriptions.
c# azure microsoft-graph microsoft-graph-sdks
c# azure microsoft-graph microsoft-graph-sdks
edited Mar 22 at 16:19
Tyler Crawford
asked Mar 22 at 2:45
Tyler CrawfordTyler Crawford
1668
1668
We are observing the same behaviour from both Beta and v1.0. This seems like a regression, since it has been working fine for the last ~8 months. Is there a fix for this? Thanks
– Chris Vo
Mar 25 at 10:53
@ChrisVo This being a regression issue seems to be likely, but is (so far) unconfirmed. I am still not aware of a fix. However I have not yet encountered the issue as described in the post with my current Graph subscriptions.
– Tyler Crawford
Mar 26 at 16:00
add a comment |
We are observing the same behaviour from both Beta and v1.0. This seems like a regression, since it has been working fine for the last ~8 months. Is there a fix for this? Thanks
– Chris Vo
Mar 25 at 10:53
@ChrisVo This being a regression issue seems to be likely, but is (so far) unconfirmed. I am still not aware of a fix. However I have not yet encountered the issue as described in the post with my current Graph subscriptions.
– Tyler Crawford
Mar 26 at 16:00
We are observing the same behaviour from both Beta and v1.0. This seems like a regression, since it has been working fine for the last ~8 months. Is there a fix for this? Thanks
– Chris Vo
Mar 25 at 10:53
We are observing the same behaviour from both Beta and v1.0. This seems like a regression, since it has been working fine for the last ~8 months. Is there a fix for this? Thanks
– Chris Vo
Mar 25 at 10:53
@ChrisVo This being a regression issue seems to be likely, but is (so far) unconfirmed. I am still not aware of a fix. However I have not yet encountered the issue as described in the post with my current Graph subscriptions.
– Tyler Crawford
Mar 26 at 16:00
@ChrisVo This being a regression issue seems to be likely, but is (so far) unconfirmed. I am still not aware of a fix. However I have not yet encountered the issue as described in the post with my current Graph subscriptions.
– Tyler Crawford
Mar 26 at 16: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%2f55292161%2fmicrosoft-graph-subscription-extensionerror-delete-update%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%2f55292161%2fmicrosoft-graph-subscription-extensionerror-delete-update%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
We are observing the same behaviour from both Beta and v1.0. This seems like a regression, since it has been working fine for the last ~8 months. Is there a fix for this? Thanks
– Chris Vo
Mar 25 at 10:53
@ChrisVo This being a regression issue seems to be likely, but is (so far) unconfirmed. I am still not aware of a fix. However I have not yet encountered the issue as described in the post with my current Graph subscriptions.
– Tyler Crawford
Mar 26 at 16:00