Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to confirm delivery status when using amazonSNS mobile push?

Tags:

amazon-sns

I'm using AmazonSNS to send push messages to IOS device. I have got the publishResult with a messageID. Is there any way I can use this messageID to check the delivery status ?

like image 647
zjc1985 Avatar asked Dec 26 '22 18:12

zjc1985


1 Answers

There is no way to confirm that a message has been delivered. However, it looks like there is a way to receive an event when a message fails to be delivered. Check out the EventDeliveryFailure here: http://docs.aws.amazon.com/sns/latest/api/API_SetPlatformApplicationAttributes.html

Maybe if you ask the SNS folks over at the AWS forums for an EventDeliveryCompleted you might be able to use that.

like image 171
tster Avatar answered Jan 05 '23 18:01

tster