2 Answers
- Newest
- Most votes
- Most comments
1
Limited authentication is supported. See: https://docs.aws.amazon.com/sns/latest/dg/sns-http-https-endpoint-as-subscriber.html
You could use notification to a Lambda function to make a more complicated authentication call. You may want SQS in the middle to ensure delivery.
answered 3 years ago
0
If you can use basic auth then it's ok and you can subscribe using https://user:password@domain.com
format as described here, the doc linked by Rodney Lester.
Oauth 2.0 is not supported.
answered 3 years ago
Thank you very much for your quick response. I tried that basic authentication by passing username:password in the https endpoint, but that doesn't work. Is there any other way to obtain the Subscription URL, so I can manually subscribe to the topic ? Or any other alternative ?
Relevant content
- AWS OFFICIALUpdated 2 years ago
- AWS OFFICIALUpdated a month ago
- AWS OFFICIALUpdated 3 years ago
- AWS OFFICIALUpdated 2 years ago
Thank you very much for your quick response. I tried that basic authentication by passing username:password in the https endpoint, but that doesn't work. Is there any other way to obtain the Subscription URL, so I can manually subscribe to the topic ? Or any other alternative ?