I’m currently testing push notification. And would like to know if there is a way to display count of notifications in app launcher icon? Like this Many thanks!
1 Like
I’ve tested it. It can show count on app icon Thanks!
Did that just work by itself, or did you do something to make it work?
It just works by itself. I use command line tool to test it (ios version).
curl -v --header "apns-topic: ${TOPIC}" --header "apns-push-type: alert" --cert "${CERTIFICATE_FILE_NAME}" --cert-type DER --key "${CERTIFICATE_KEY_FILE_NAME}" --key-type PEM --data '{"aps":{"badge" : 1, "alert":{"title" : "Example Title","subtitle" : "Example Subtitle","body":"This is body.",}}}' --http2 https://${APNS_HOST_NAME}/3/device/${DEVICE_TOKEN}