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 年前檢視次數 770 次
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.

您尚未登入。 登入 去張貼答案。

一個好的回答可以清楚地回答問題並提供建設性的意見回饋,同時有助於提問者的專業成長。

回答問題指南