gpt4 book ai didi

.net - Amazon SNS 到 SQS - 使用 .NET SDK 确认订阅

转载 作者:行者123 更新时间:2023-12-04 18:06:05 26 4
gpt4 key购买 nike

我正在尝试设置 Amazon Ses 通知以转到我的 SQS 队列。我正在按照说明创建 SQS 队列,然后创建 SNS 主题,并将一个主题订阅到另一个主题。

但是在管理控制台中,订阅出现“待确认”。

我正在使用 .NET AWS SDK,如何确认订阅?或者更好的是,为什么我必须确认? documentation

If the owner of the queue creates the subscription, the subscription is automatically confirmed and the subscription should be active almost immediately.

我将我的 AWS 凭据作为所有者用于所有 API 调用,所以我不明白为什么我需要确认,但无论如何我该怎么办?

    private static string CreateBounceTopicAndQueue(IAmazonSQS sqsClient, IAmazonSimpleNotificationService snsClient)
{
// 1. Create an Amazon SQS queue named ses-bounces-queue.
CreateQueueResponse createQueueResponse = sqsClient.CreateQueue(new CreateQueueRequest()
{
QueueName = AppGlobal.SesBouncesQueue,
Attributes = new Dictionary<string, string>() {
{ "ReceiveMessageWaitTimeSeconds", "20" }
}
});
string queueUrl = createQueueResponse.QueueUrl;

// 2. Create an Amazon SNS topic named ses-bounces-topic
CreateTopicResponse createTopicResponse = snsClient.CreateTopic(new CreateTopicRequest
{
Name = AppGlobal.SesBouncesTopic
});
string topicArn = createTopicResponse.TopicArn;

// 3. Configure the Amazon SNS topic to publish to the SQS queue
var response = snsClient.Subscribe(new SubscribeRequest
{
TopicArn = topicArn,
Endpoint = queueUrl,
Protocol = "https"
});

return queueUrl;
}

最佳答案

您不会通过使用队列 URL 创建 https 订阅来为 SQS 队列订阅 SNS 主题。

您使用队列的 ARN 创建一个“sqs”(不是 https)协议(protocol)订阅(不是网络端点)作为端点。


protocol
Type: System.String
The protocol you want to use.
...
sqs -- delivery of JSON-encoded message to an Amazon SQS queue

endpoint
Type: System.String
The endpoint that you want to receive notifications. Endpoints vary by protocol...

For the sqs protocol, the endpoint is the ARN of an Amazon SQS queue

http://docs.aws.amazon.com/sdkfornet/latest/apidocs/items/MSNS_SNSSubscribe_String_String_StringNET4_5.html

关于.net - Amazon SNS 到 SQS - 使用 .NET SDK 确认订阅,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26391793/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com