microsoft-graph-sdks

Resource 'GUID value here' does not exist or one of its queried reference-property objects are not present

丶灬走出姿态 提交于 2019-11-29 16:20:39
I'm trying to change an Azure AD user password. The user is already authenticated in a SPA application using the implicit flow and the adal library. While calling: return await graphClient.Me.Request().UpdateAsync(new User { PasswordProfile = new PasswordProfile { Password = userPasswordModel.NewPassword, ForceChangePasswordNextSignIn = false }, }); I'm getting this exception: {"Code: Request_ResourceNotFound\r\nMessage: Resource '35239a3d-67e3-4560-920a-2e9ce027aeab' does not exist or one of its queried reference-property objects are not present.\r\n\r\nInner error\r\n"} Debugging the access

Microsoft Graph Subscription ExtensionError - Delete / Update

穿精又带淫゛_ 提交于 2019-11-29 15:34:22
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 /