Questions tagged [amazon-sns]

Amazon Simple Notification Service is a highly available, cloud hosted publish/subscribe manager.

Amazon Simple Notification Service is a highly available, cloud hosted publish/subscribe manager. A user creates an SNS topic and other users subscribe to it. When a message is published to a topic it is pushed to each subscriber.

2929 questions
1
vote
1 answer

Not working AWS SNS Sending Text messages using AWS SDK in C#

I have successfully sent text message using AWS - Amazon Simple Notification Service NuGet package in my sample Application. (In this Package, it will automatically install AWSSDK- Core runtime) But, when I was trying to merge code in my current…
Mahesh Waghmare
  • 726
  • 9
  • 27
1
vote
1 answer

Push Notification to multiple devices at once

I am looking for some input on what might be a solution to the case where I will have to send a push notification to many devices at once. The notification will retain the same message for every device that it is sent to. I have looked into AWS…
1
vote
2 answers

SNS notification after restore from glacier

I have an s3 buckets with a bucket policy to send their objects to glacier after x days of creation. It is working fine by moving the objects to glacier storage.When I go to retrieve those objects later using aws php sdk 3.x api $result =…
Senchu Thomas
  • 518
  • 3
  • 9
  • 24
1
vote
1 answer

SNS - Getting badge count of devices in a Topic

If you were to publish to 3 devices in a Topic, how can you get an accurate badge count for each of those 3 devices and pass them through? e.g. Device A - unread messages 3 Device B - unread messages 5 Device C - unread messages 10 If i publish…
fes
  • 2,465
  • 11
  • 40
  • 56
1
vote
1 answer

Using API Gateway backed by Lambda Functions which communicate between Microservices using SNS

In short, I am interested in building loosely coupled Microservices connected via SNS (for the most part) in order to process API requests in real-time. Premise Need all of this to occur within a single POST request response body Cannot ask the…
David Garza
  • 161
  • 1
  • 9
1
vote
3 answers

Amazon SMS for single number from c# sdk without creating topic

As per the docs, to send an SMS for single number, we need not create SNS topic. Clearly, they have given a sample code which shows we can set phone number for publish request…
RecklessSergio
  • 806
  • 3
  • 10
  • 34
1
vote
0 answers

How to send push notification on android device using Amazon Web Service SNS in c#?

I want sample project or a code in C# for sending sample notification. I have searched online for sample code for the AWS SNS in C# but not getting any useful resource. And AWS SNS API's information for sending notification will also be very…
Yasin
  • 1,150
  • 5
  • 19
  • 39
1
vote
1 answer

Amazon SNS invalid message structure for APNS

I've implemented Amazon SNS for push notifications. I'm sending json in the following structure: { "aps":{ "alert":{ "loc-args":["ARGS"], "loc-key":"KEY", } "sound":"default" } } But on iOS client I'm receiving it as…
Orest
  • 6,548
  • 10
  • 54
  • 84
1
vote
1 answer

How to find total no of subscriptions in SNS using AWS CLI?

I have to list all the subscriptions in SNS, but aws sns list-subscriptions is listing only 100 queues unless we mention the option --max-items. Every time i've to manually check the no of SNS subscriptions to assign the right value.Is there anyway…
Bored Monkey
  • 91
  • 1
  • 1
  • 7
1
vote
1 answer

Remote notification category not being sent to client device?

I am using Amazon SNS to provide remote notifications for my iOS app and I am having trouble getting notification categories to be included when received on the client device. Here's how I posting the notification from the server using SNS: @client…
1
vote
1 answer

AWS SNS Applications - Get Name of the Platform Applications via API

I am using the listPlatformApplications() method of AmazonSNSClient which returns the list of PlatformApplication objects. But PlatformApplication object only has ARN and one attribute names "Enabled" . I want to get the Name of the…
g.revolution
  • 11,962
  • 23
  • 81
  • 107
1
vote
0 answers

Sending Notification with Amazon SNS and Firebase FCM to Android app are not received when app is closed

I'm sending notifications via amazon sns and google Firebase fcm. Everything is working fine if the app is in the foreground or background. But if the app is killed then notifications stop. I get the following in the debug console W/GCM/DMM:…
mate0
  • 191
  • 4
  • 7
1
vote
2 answers

can we use SNS for sending multiple email addresses as inputs in stack

How to give multiple email addresses as Inputs in amazon SNS as subscribers using stack. Just I want to take email address as input parameter and allowed it to take multiple email addresses as comma separated string i.e CommaDelimitedList, but it…
aruna
  • 11
  • 2
1
vote
1 answer

Using amazon SNS to call two nodes of the same application

We need to clean the cache of an application that is deployed in a two different nodes. Our problem : We have a http servlet endpoint to clean the cache, however, it only cleans the cache from one node, but not from the other, and that leads to…
fgonzalez
  • 3,787
  • 7
  • 45
  • 79
1
vote
3 answers

AWS SNS - Push to GCM

I am attempting to use AWS SNS for push notifications for my app. I have successfully setup registation of individual endpoints ARN's using user info and regsitration ID. I can send an individual message via the console fine, however I can't seem to…
Yonkee
  • 1,781
  • 3
  • 31
  • 56
1 2 3
99
100