我如何向某些订阅者动态发送 AWS SNS HTTP
How can i send AWS SNS HTTP dynamically to certain subscribers
我发送了很多消息,但订阅者经常变化(每条消息),我如何才能在每条消息上选择我的特定订阅者?可能性太多,无法为每个组合创建主题。
你不能。消息已发送给 SNS 主题的所有订阅者。
Once you subscribe an endpoint to a topic and the subscription is
confirmed, the endpoint will receive all messages published to that
topic. Source
您可以在后端自行管理端点。然后您发布到单个端点。对于大型团体,您必须安装防洪设施。
我发送了很多消息,但订阅者经常变化(每条消息),我如何才能在每条消息上选择我的特定订阅者?可能性太多,无法为每个组合创建主题。
你不能。消息已发送给 SNS 主题的所有订阅者。
Once you subscribe an endpoint to a topic and the subscription is confirmed, the endpoint will receive all messages published to that topic. Source
您可以在后端自行管理端点。然后您发布到单个端点。对于大型团体,您必须安装防洪设施。