Is it possible to receive GCM notification from Amazon sns without Android? I.e. to email, python. In other word, is it possible to emulate Android gcm client?
Asked
Active
Viewed 59 times
0
-
1You can pass the data payload emulating the GCM payload via Amazon SNS. But other default GCM keys will not be available. – Darshan Pania Sep 24 '18 at 11:45
-
1FCM sdk is available for [JS receivers](https://firebase.google.com/docs/cloud-messaging/js/receive) too. – Mohammed Atif Sep 24 '18 at 11:45
-
@Darshan Pania, thank you. Amazon sns can send GCM, but how to receive it without Android app? For example in bdd tests... – Irina Sep 24 '18 at 15:25
-
Do you mean Behavior Driven Development test cases? – Darshan Pania Sep 26 '18 at 10:32
-
@Darshan Pania, yes – Irina Sep 26 '18 at 13:10
-
1If you receive the GCM look-alike payload via SNS, then all your client needs to do is have a parser code which parses the payload. You will obviously not be able to render a push notification without the Android environment – Darshan Pania Sep 27 '18 at 06:56