Can Azure Notification Hub handle WidgetKit push tokens
Can Azure Notification Hub handle WidgetKit push tokens? I am trying to implement widgetPush (refer https://developer.apple.com/documentation/WidgetKit/Updating-widgets-with-widgetkit-push-notifications)
AI said ANH does not support for WidgetKit-specific widgetPush tokens or any special handling for them" does it mean that ANH does not support widgetPush tokens?
1 answer
-
AI answer
Azure Notification Hubs works with standard APNS device tokens and does not expose or document any special handling for WidgetKit-specific
widgetPushtokens.Notification Hubs integrates with APNS either via certificate (.p12) or token-based (HTTP/2) authentication, and sends notifications using the APNS endpoint that matches the app’s environment (
sandboxorproduction). Configuration is done at the APNS level (Key ID, Team ID, Bundle ID, Token / certificate, endpoint), and Notification Hubs treats APNS tokens generically as APNS device tokens.The available documentation describes:
- How to configure APNS in a hub (certificate or token-based).
- How to obtain and configure APNS authentication information.
- How to send APNS notifications (including headers such as
apns-push-type,apns-priority).
There is no mention of WidgetKit-specific
widgetPushtokens or any additional configuration or behavior for them. Based on the provided documentation, Notification Hubs does not have explicit or special support for WidgetKitwidgetPushtokens beyond its generic APNS support.
References:
AI-generated content may be incorrect. Read our transparency notes for more information.
