Hello,
I am able to register the device for FCM V1, once I get the notification token, I can send the test notification using azure hub overview -> Test Send option with format
`
{ "message": { "notification": { "body" : "message body"} } }
But when same message I send from my backend using
notificationHubClient.SendFcmNativeNotificationAsync method, it always goes to gcm and I'm getting error,
Microsoft.Azure.NotificationHubs.Messaging.BadRequestException: The notification has no target applications. The notification format is gcm. Review the credentials specified in the notification hub description and the notification format
Am I missing any configuration at backend / Azure hub?