我正在尝试使用SNS和Boto(python)向iPhone发送推送消息。
当我将一个普通的SNS主题设置为发布(替换下面的device ='xxx')时,代码工作正常,但是当我用应用程序或在该应用程序中注册的设备替换arn时,会抱怨以下内容:
boto.exception.BotoServerError: BotoServerError: 400 Bad Request
{"Error":{"Code":"InvalidParameter","Message":"Invalid parameter: Topic Name","Type":"Sender"},"RequestId":"ee1fa01c-3b01-52be-9ca2-ed42c6748e40"}
问题是我什至没有一个名为“主题名称”的参数。 http://boto.readthedocs.org/en/latest/ref/sns.html有关发布的部分的boto文档是我见过的最糟糕的文档之一。有人看过吗?
代码如下:
from boto.sns import connect_to_region
AWS_KEY = '--REMOVED--'
AWS_SECRET = '--REMOVED--'
def push(subject, message, device = u'arn:aws:sns:eu-west-1:606448161548:app/APNS_SANDBOX/SkygdIphone'):
c = connect_to_region('eu-west-1', aws_access_key_id = AWS_KEY, aws_secret_access_key = AWS_SECRET)
c.publish(
device,
message,
subject)
push('subject', 'message')
有任何建议,我现在对此表示怀疑。
最佳答案
我认为问题在于您依赖于publish
方法的参数顺序,而这些并不是您所期望的。
相反,请尝试以下操作:
c.publish(message=message, subject=subject, target_arn=device)
看看您是否获得更好的结果。
关于python - AWS Boto SNS无效的参数主题名称,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/28594071/