From d8bb002b1e73a8a65577c88eab1a68175685f0ac Mon Sep 17 00:00:00 2001 From: Vaheeshta Mehrshahi <54992755+vaheeshta@users.noreply.github.com> Date: Tue, 13 Sep 2022 11:15:25 -0700 Subject: [PATCH] Update summary of push notif API differences --- .../migrate-to-windows-app-sdk/guides/notifications.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/hub/apps/windows-app-sdk/migrate-to-windows-app-sdk/guides/notifications.md b/hub/apps/windows-app-sdk/migrate-to-windows-app-sdk/guides/notifications.md index 3a775e2bb9..4d16e7b5d1 100644 --- a/hub/apps/windows-app-sdk/migrate-to-windows-app-sdk/guides/notifications.md +++ b/hub/apps/windows-app-sdk/migrate-to-windows-app-sdk/guides/notifications.md @@ -23,8 +23,8 @@ Push notifications can be broken down into these four separate stages. | Stage | UWP | Windows App SDK| |--------|-----|----------------| | Identity | Partner Center (MSA) | Azure App Registration (AAD) | -| Channel request | Synchronous| Asynchronous
Azure App Registration Id
Azure Tenant Id
Retry logic built in (up to 5 retries) | -| Activation | In-process, PushTrigger\*, COM activation\* | In-process, COM activation | +| Channel request | Asynchronous| Asynchronous
Azure App Registration Id
Retry logic built in (up to 5 retries) | +| Activation | In-process, PushTrigger\*, COM activation\* | In-process, COM activation, ShellExecute | | Sending push notifications | Uses login.live.com endpoint to receive an access token | Uses the `https://login.microsoftonline.com/{tenantID}/oauth2/token` endpoint for token request | \* Supported for Windows 10, version 2004 (10.0; Build 19041), and later. @@ -88,4 +88,4 @@ Authorization: Bearer [your access token] Content-Length: 46 { Sync: "Hello from the Contoso App Service" } -``` \ No newline at end of file +```