亚马逊SNS:无法获得应用程序端点

我需要将PlatformApplication订阅到Topic ,以便创建一个新的PlatformApplication ,它将返回PlatformApplicationArn和一个返回TopicArn的新Topic 。 然而,为了对某个主题进行分离,需要Application Endpoint Arn ,而我无法使用任何调用来找到它。

以下是他们的API。

response = client.subscribe(
    TopicArn='string',
    Protocol='string',
    Endpoint='string'
)

对于应用程序协议,端点是移动应用程序和设备的EndpointArn。

如果我使用PlatformApplicationArn,我会得到下面的错误。

botocore.errorfactory.InvalidParameterException: An error occurred
(InvalidParameter) when calling the Subscribe operation: Invalid parameter:   
Application endpoint arn invalid:arn:aws:sns:us-west-
2:252285631092:app/GCM/tmp

他们的文件非常缺乏。 任何人都可以帮助找到相同的?

链接地址: http://www.djcxy.com/p/32217.html

上一篇: Amazon SNS: Not able to get Application Endpoint Arn

下一篇: How to send notification to everyone except the initiator in Amazon SNS Topics?