Send text messages from web application to Android device using Amazon SNS - android

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.

SNS sends email or push messages to phones. It does not send SMS.
You'll need to use a service like Twilio for that.

Related

For amazon SNS for mobile push notification, should i use server to register the device or directly from mobile

I am new to mobile app Development. For mobile push notification using SNS, we need to add device to SNS topic. One way is to directly make a call from the mobile app to amazon SNS.I need to send amazon aws_access_key_id and aws_secret_access_key with the request to register device to the topic which seems less secure.
Alternate way is to send the device id to backend server and add device from backend.
What is standard way to achieve this. I am unable to find relevant codebase and tutorials that explains it..

send notification to ios and android using FCM Rest Api (New Versio)

I have a net core Back-End (3.1).
I created a page in which admin should enter title and description and pick a user to send a notification.
I want to send notification payload to Apple devices and not to an android device similar to a custom notification.
there is a platform-specific notification in Firebase Cloud Messaging documentation .
However, I was not able to implement it .
If you wanna only send the notification to Apple devices only. Then APNS Push notification push gateway will be suitable for you. See here
Certainly, FCM can also deal with this issue. You need to add the ApnsConfig to your request and send it to the FCM server.
If you cannot implement it, you need to mention more detail about your issue (trace log, exception info, etc.)

How to send push notifications from wordpress to android webview app?

I have WebView android app for our website, running on wordpress core.
On the website we are using social network extension, so users can send private messages, reply to the comments and so on. For that we have on website a notification panel.
Now the task:
Is it possible to use the notifications on the website and send it somehow to the android app as push notification?
What is the best way to do it? Or is there a developer that can help me with this?
You have to add the FCM message sending function to the wordpress server or your server.
After that, you need to add the FCM receiving part in Android and send the device_id to the server so that the FCM message can be received.

Hows App server and GCM server are different in functioning?

I follow this link PLease see here . Can anyone tell me exact process to communication between two mobile devices in terms of push notification. Please help me.
GCM is a google cloud messaging http server.It is used for providing notification service on android phones any notification you receive on your phone is sent through GCM.Every device using a specific application is registered with GCM. Even if you want your application to send notification to the user on occurrence of something it's not possible without GCM.

Apple push notifications on GCM

I'm trying to create application for Android and iOS and, i want to use push notification on both the application. I'm going to have a server app that will be sending the notification.
but i am trying to APNS and Parse SDK it's common to use ,but i want GCM through push notifications on iOS ,can you please how can it possible ,any such information about GCM to iOS push notifications ,i am googling but i want some suggestions for GCM through iOS device notifications.Can you help me.thank you.
There is very good descriptive instructions in Google Cloud Messaging for iOS guide. It shows whole flow from registration of device token to receive push from server with code example.
After go through above guide, you may go for Setting up a GCM Client App on iOS and you are almost done to use GCM with iOS application
Update: GCM now supports IOS. See Grigo´s comment.
GCM is Android specific. If you want to avoid dealing with 2 different services for IOS and Android, you can use something like Amazon SNS for example. SNS now supports pushing cloud notifications to Android, IOS and Windows devices via the AWS Mobile SDK.

Categories

Resources