I tried for a while to send a FCM Notification with special characters like this:
curl --header "Authorization: key=Auth-CODE"
--header Content-Type:"application/json
for JSON; application/x-www-form-urlencoded;charset=UTF-8"
-d '{"to":"token","notification":{"title":"München",
"body":"Test Content with äöü",
"icon":"images/icon-192x192.png"}}'
https://fcm.googleapis.com/fcm/send
The notification I'll get looks like this:
Mnchen
Test Content with
Can anybody please guide me to the right direction? Thanks a lot!
EDIT
The client is a browser, because the app is a web-App.