I have an app (Xamarin Forms) and I'm trying to configurate the Amazon Web Services to send push notifications.
I've already set the Google Firebase project and I'm able to receive messages directly from there in my Android app.
The code I based on is the Amazon one: https://github.com/awslabs/aws-sdk-net-samples/tree/master/XamarinSamples/SNS
The issue right now is: how can I send push notification to all users?
I didn't understand how Amazon AWS works and its documentation is a little bit confusing.
I tried to publish a message directly to an application but it does not work withou a topic, but I don't know how to set a topic and subscribe ALL users.
All tutorials I've watched only show how to set a topic using email... but, in my case it is an app which uses a webservice.
How should I set the Amazon AWS to send push notification to the users?
Posts
try to instead
http://stackoverflow.com/questions/25395942/amazon-sns-push-notification-service
try to instead
http://stackoverflow.com/questions/25395942/amazon-sns-push-notification-service
I was able to send a push notification when I manually used a token generated on my Android app.
But, I have to do it automatically.
In my app (it's kind of a chat) it has lots of users. Thus, when user X receives a message his device also receive a push notification. But only that user receives the notification.
How can I do it?