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

How to read a body of received aws-ses email

I want to set up AWS SES service for receiving and processing technical emails from different subscriptions. I read documentation Setting Up Amazon SES Email Receiving and followed all steps. For receiving a body I tried both ways: Storing an email…
RredCat
  • 5,259
  • 5
  • 60
  • 100
1
vote
1 answer

Triggering a lambda using SNS notification not working

package example; import java.io.*; import com.amazonaws.services.lambda.runtime.Context; public class LambdaMethodHandler { public String handlerString(String input,Context context) { System.out.println(input.length()); return…
Crosk Cool
  • 664
  • 2
  • 12
  • 27
1
vote
1 answer

getApplicationContext error

I'm trying to store my device token from my android app programmatically to AWS SNS platform application. I'm getting an error in getApplicationContext() method. Anyone with a solution for this error? This is my code: public class RegisterIdForAWS…
Ashish
  • 167
  • 1
  • 1
  • 6
1
vote
2 answers

Not able to receive push notification to iOS devices when using Amazon SNS

I have followed all the steps mentioned in the official documentation. I am able to register device tokens in the application endpoint list successfully. The message has been published to registered tokens. The delivery status says success (status…
Melody
  • 1,203
  • 2
  • 17
  • 28
1
vote
0 answers

Firebase cloud messaging notification not received by device from SNS aws

I am having an issue with FireBase Cloud Messaging in which I get the Token from the device and send the notification test through the Google Firebase notification console getting notification to the mobile. But am failing to get notification from…
1
vote
1 answer

How to ignore inactive device while sending push notification using Amazon SNS?

I am trying to implement push notification using Amazon SNS. I have used the sample available in the below link. The application end points are created successfully and i can send notification fine. But how can we ignore inactive device tokens while…
Melody
  • 1,203
  • 2
  • 17
  • 28
1
vote
1 answer

SNS not able to hit HTTPS endpoint

I have below annotation set on my controller but it is not able to receive AWS SNS messages, @RequestMapping(method = RequestMethod.POST, headers = "Content-Type=text/plain; charset=UTF-8") SNS message sample is here I always get 415 Unsupported…
User0911
  • 1,552
  • 5
  • 22
  • 33
1
vote
1 answer

SNS handle more than 10 million subscriptions per topic

how to SNS Topic handle more than 10 million subscriptions. Request increase the limit. is any other option to handle this scenario. Topic: MyAPPNOTIFICATION Reached 9.9 Million subscriptions.
samson
  • 1,549
  • 3
  • 13
  • 20
1
vote
1 answer

Amazon SNS publish push notifications

I am using python for amazon SNS for publishing push notifications. data = { "GCM" : {"data": {"message": "dummy" }}} jsonData = json.dumps(data) self.client.publish( TargetArn=targetArn, Message= jsonData, …
garg10may
  • 5,794
  • 11
  • 50
  • 91
1
vote
2 answers

How to send push to specific member using SNS topic?

I am using AWS SNS to send a push notification, right now i am using publish method of aws-php-sdk to send push specific device. My requirement is sent push to thousands of members within 30 seconds. When i used publish method it takes 5min to send…
1
vote
1 answer

Single SNS notification for multiple recipients

I'm trying to understand how SNS will transmit a single notification for multiple recipients. The Amazon SES docs state: For a given notification type, you might receive one Amazon SNS notification for multiple recipients, or you might receive a…
new name
  • 15,861
  • 19
  • 68
  • 114
1
vote
0 answers

AMAZON SNS import Parse Server Data as JSON

I am shifting my self-hosted parse to Amazon SNS and have followed all instructions on this link properly: https://aws.amazon.com/blogs/mobile/migrating-from-parse-push-to-amazon-sns/ Now on step 4: Import Parse Push data when i run the java…
1
vote
1 answer

shift from self-hosted Parse-Server to Amazon SNS

Hi i want to shift my self hosted Parse server to Amazon SNS and all the guides i have found online only show options to export data from parse.com dashboard and not self hosted parse / parse-dashboard, for example the following…
1
vote
1 answer

How to do SNS Push Notification? CreatePlatformEndpointResult returns null

I have followed a tutorial on how to setup SNS Push notification but the CreatePlatformEndpointResult object returns null. I need that so that I can retrieve the endpointArn and send that to the backend. Below is my entire setup. And here is the…
portfoliobuilder
  • 7,556
  • 14
  • 76
  • 136
1
vote
1 answer

Receiving spam from AWS SMS short code

I've been using AWS SNS to send SMS short codes, which I have been able to do successfully (The short code I receive AWS SMS messages from is 37083). However, I noticed that if I respond to any of these messages, I get spam back. AWS SNS does not…
Eric
  • 2,008
  • 3
  • 18
  • 31