Azure Notification Hubs
An Azure service that is used to send push notifications to all major platforms from the cloud or on-premises environments.
340 questions
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
Hi ,
I am still having issue that working on SendFcmV1NativeNotificationAsync() but not working with SendTemplateNotificationAsync(). I registered the device and template as below :
var result = await hubClient.CreateFcmV1NativeRegistrationAsync(token, tags);
var templateRegisterResult = await hubClient.CreateFcmV1TemplateRegistrationAsync(token, NotificationConstants.FCMV1TemplateBody);
My template body is here: public static string FCMV1TemplateBody { get; set; } = "{"message":{"android":{"data":{"message":"$(messageParam)"}}}}";
Need your advice
Thank you.