I'm using AWS SNS to push messages to Android devices. Is there a way to send text message from a web application preferably Django to an Android device ? I tried using the boto library but there isn't an example in the documentation for pushing a message to a device. Can someone please point me in the right direction or help me figure out how to do this.
Asked
Active
Viewed 653 times
1 Answers
0
SNS sends email or push messages to phones. It does not send SMS.
You'll need to use a service like Twilio for that.

tedder42
- 23,519
- 13
- 86
- 102
-
Yes, I meant push messages. Can you help me to push messages from a web app to my android chat app – Sibtain May 21 '15 at 15:10
-
[here are some examples of using boto for SNS pushes](http://stackoverflow.com/a/20134162/659298) – tedder42 May 21 '15 at 22:14
-
Amazon SNS support sending text messages to phones. – Daniel van Flymen Jan 19 '16 at 04:17