Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

AWS API-Gateway communicating to SNS

Tags:

I am building an API which will be serviced by Lambda functions but I need these to be asynchronous so rather than connecting the API-Gateway directly to the Lambda function I'm using the "AWS Service Proxy" to publish SNS messages and then have the Lambda function subscribe to the relevant SNS topic so it receives delivery of the requests. Here's a picture which illustrates the flow:

enter image description here

I have tested both the Lambda function in isolation as well pub/sub messaging between SNS and Lambda but I am struggling with the API-Gateway to SNS handoff. Documentation is quite light but what I am assuming right now is that the following attributes must be sent in the POST request:

  1. Action: the API-Gateway offers to set this in the UI and I have put in the Publish action which is the appropriate SNS action

  2. Message: the body of the POST message should be a JSON document. It would be passed by the web client and proxied through the gateway to SNS.

  3. TopicArn: indicates the SNS topic that we're publishing to. In my design this would be a static value/endpoint so I'd prefer that the web-client not have to pass this too but if it were easier to do this that would be fine too.

I have tried lots of things but am just stuck. Would love to find a good code example somewhere but any help at all would be appreciated.


Wanted to add a little more context on my current attempt:

I have tried publishing my API and using Postman to try and get a valid response. Here's the postman screens(one for header vars, one for JSON body):

header variables json body

This results in the following error message:

{    "Error": {      "Code": "InvalidParameter",      "Message": "Invalid parameter: TopicArn or TargetArn Reason: no value for required parameter",      "Type": "Sender"   },   "RequestId": "b33b7700-e8a3-58f7-8ebe-39e4e62b02d0" } 

the error seems to indicate that the TopicArn parameter is not being sent to SNS but I have included the following in API-Gateway:

enter image description here

like image 700
ken Avatar asked Dec 10 '15 23:12

ken


People also ask

Can API gateway subscribe to SNS?

There will be an API Gateway REST API with a resource and method configuring to proxy requests to our SNS topic. With this architecture, a client can insert messages into our SNS Topic by making a POST request to our API Gateway endpoint.

Can SNS call an API?

Yes, you can. The Amazon SNS API is accessible and works using an HTTP protocol.

How do I send messages to SNS?

To send a message In the Amazon SNS console , on the Topics page, choose the name of the topic to which you want to send SMS messages. On the topic details page, choose Publish message.


1 Answers

I'm from the Api Gateway team.

I believe there are a few formats for the HTTP request to the Publish API, but here's the one I used first:

AWS Region us-west-2

AWS Service sns

AWS Subdomain

HTTP method POST

Action Publish

== query strings ==

Subject 'foo'
Message 'bar'
TopicArn 'arn:aws:sns:us-west-2:xxxxxxxxxxxx:test-api'

This worked for me to publish a message.

Let me know if you have further troubles.

Jack

like image 133
jackko Avatar answered Oct 19 '22 02:10

jackko