aspnetcore-webhooks-sample
aspnetcore-webhooks-sample copied to clipboard
This sample shows how to subscribe for Microsoft Graph webhooks using application (app-only) permissions and the Azure AD endpoint.
here https://github.com/microsoftgraph/aspnetcore-webhooks-sample/blob/9be538d386f941ecfa675c902cb596ae42d7a8ea/src/GraphWebhooks/Controllers/ListenController.cs#L76 and there https://github.com/microsoftgraph/aspnetcore-webhooks-sample/blob/9be538d386f941ecfa675c902cb596ae42d7a8ea/src/GraphWebhooks/Controllers/LifecycleController.cs#L54 The following line needs to be added ```csharp ApiClientBuilder.RegisterDefaultDeserializer(); ```
How do I develop an ASP.NET Core application that listens to change notification upon receiving a new mail based on some condition? I've already created a sample app by referring...
As described in #170 replace custom token validation code once https://github.com/microsoftgraph/msgraph-sdk-dotnet-core/issues/317 is fixed. @baywet