Teams activity feed notification click not working in iPhone and Android
Thomas, George
1
Reputation point
I tried to send a teams activity feed notification using Graph API to open my custom app in teams which is already installed. If i click the notification in Windows teams desktop app it is navigating correctly and opening the application, but for android and iOS the behaviour is different
iOS:-
While i click the notification, nothing happens. Is there a way to debug whats happening.
Android:-
In android it shows "The app may require approval from IT admin or is unsupported on this device"
API DETAILS
https://graph.microsoft.com/v1.0/teamwork/sendActivityNotificationToRecipients
{
"topic": {
"source": "entityUrl",
"value": "https://graph.microsoft.com/v1.0/appCatalogs/teamsApps/<appId>"
},
"activityType": "notification",
"previewText": {
"content": "Test Notification"
},
"recipients": [
{
"@odata.type": "microsoft.graph.aadUserNotificationRecipient",
"userId": "****"
},
{
"@odata.type": "microsoft.graph.aadUserNotificationRecipient",
"userId": "*****"
}
]
}
Sign in to answer