Aditya P
Aditya P

Reputation: 31

Amazon SNS topic,subscription and push notifications management from Android,iOS device

I am a newbie to AWS and am exploring it for a mobile application targeted for Android and iOS platforms.One of my application's requirement is to provide push notifications wherein users subscribe to particular topic(s) and then get notifications for those topics.I had gone through Amazon SNS which intends to do exactly the same. Moreover, I have also tested sending push notifications to registered devices from AWS console. This works like a charm.

However,this is a manual process and I want this to be dynamic but without using an intermediate server. Rather I want to do this from the device(s) themselves using AWS Android, iOS SDKs. Thus I have following queries-

  1. Can the Topics for SNS push notifications be created from within app?
  2. Can Subscriptions to a particular topic be managed from the app itself?
  3. Most importantly can push messages be published from devices to all subscribed devices of that topic?

Thanks in advance !

Upvotes: 3

Views: 2540

Answers (1)

tyegah123
tyegah123

Reputation: 212

I am currently working on AWS SNS on iOS, and the answer to your questions are :

  1. YES, topics can be created from within the app itself
  2. YES, Subscriptions can be managed from the app also
  3. YES, Push messages can be published from devices to all subscribed devices of a topic.

Please correct me if I'm wrong. And let me know if sample codes are needed.

Thank you.

Upvotes: 1

Related Questions