SNS subscribe HTTPS endpoint

0

I'm attempting to integrate a Google Chat webhook with the SNS https protocol but am having difficulty.

command1:

aws sns subscribe --topic-arn arn:aws:sns:us-east-1:123456789012:MyTopic --protocol https --notification-endpoint 'https://chat.googleapis.com/v1/spaces/AAAAaikfLEo/messages?key=<your-key>&token=<your-token>'

output:

{ "SubscriptionArn": "pending confirmation" }

Here are the cloud monitoring logs.

{ "notification": { "messageId": "0b72f18b-4267-4766-9196-58sckdsjwswf", "topicArn": "arn:aws:sns:us-east-1:123456789012:MyTopic", "timestamp": "2023-03-11 05:57:32.278" }, "delivery": { "deliveryId": "0b72f18b-4267-4766-9196-58sckdsjwswf", "destination": "https://chat.googleapis.com/v1/spaces/AAAAaikfLEo/messages?key=<your-key>&token=<your-token>", "providerResponse": "Bad Request", "dwellTimeMs": 62, "statusCode": 400 }, "status": "SUCCESS" }

I tried other commands as well, but they were ineffective.

command2:

aws sns subscribe
--topic-arn arn:aws:sns:us-east-1:123456789012:MyTopic
--protocol https
--notification-endpoint 'https://chat.googleapis.com/v1/spaces/AAAAaikfLEo/messages?key=<your-key>&token=<your-token>'
--attributes '{"http":{"defaultContentEncoding":"UTF-8","headers":{"Content-Type":"application/json"}}}'

error:

Parameter validation failed: Invalid type for parameter Attributes.http, value: OrderedDict([('defaultContentEncoding', 'UTF-8'), ('headers', OrderedDict([('Content-Type', 'application/json')]))]), type: <class 'collections.OrderedDict'>, valid types: <class 'str'>

not greeting the error in command1 but receiving no response However, the status code in the logs is 400, so I'm not sure what the error is; it could be about the header or something else.

已提问 1 年前774 查看次数
1 回答
1

I think your first attempt was successful. However, you need to get the token that was sent to the URL and run the confirm-subscription. That might not be available to you.

You can also set this up following the instructions here: How do I use webhooks to publish Amazon SNS messages to Amazon Chime, Slack, or Microsoft Teams?.

profile pictureAWS
专家
kentrad
已回答 1 年前
  • Is it possible to do without lambda?

  • Yes, if you can get to the logs of the endpoint to submit the token. Otherwise you will need some proxy that subscribes to the topic. You can host that proxy on other things besides Lambda.

您未登录。 登录 发布回答。

一个好的回答可以清楚地解答问题和提供建设性反馈,并能促进提问者的职业发展。

回答问题的准则