Hi @嘉辉 梁 thanks for the question. Yes, I believe Azure Notification Hubs supports deep links. You can include a deep link in the notification payload and the app can handle it when the notification is received.
To include a deep link in an iOS notification payload, you need to include it in the url
attribute of the aps
object. You can try this in your payload:
{
"aps": {
"alert": {
"title": "xxxx",
"body": "xxxx"
},
"url": "xxxx"
}
}
In this example, the deep link is included in the url
attribute of the aps
object. When the notification is received, the app can handle the deep link by checking the value of the url
attribute.
Hope that helps
Best,
Grace