Amazon SNS(简单通知服务)Perl 库
我想开始使用 Amazon Simple notification Service,但我还没有找到任何可以使用的 Perl 库用于访问服务。我宁愿不创建自己的库,我想看看是否有人使用过用于 SNS 服务的 Perl 库,以及他们是否会推荐任何库。
I wanted to start using the Amazon Simple Notification Service, but I have not found any Perl libraries that I can use to access the service. I would rather not create my own library, I wanted to see if anybody has used any Perl libraries for the SNS service, and if they would recommend any.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
Amazon::SNS 存在。这些文档非常稀疏,但看起来它提供了基础知识,并且代码质量对我来说看起来很好。
Amazon::SNS exists. The docs are pretty sparse but it looks like it does the basics, and the code quality looks fine to me.
我将 Net::Amazon::AWSSign 与一个小脚本结合使用:
我实际上最终使用了 XML::Simple,并将结果从 Curl 传递到 XMLIn,以解析 Amazon 返回的 XML。做你想做的事...
I used Net::Amazon::AWSSign in conjunction with a tiny script:
I actually used XML::Simple in the end, and passed the result from Curl to XMLIn, to parse the XML that Amazon returns. Do what you will...
我以布拉德的为起点,谢谢布拉德!
我将当地时间更改为 gmtime。
我也没有使用主题,而是使用目标 ARN 并使用基于角色的身份验证。
我必须传递 SecurityToken 才能使其工作,并且当我将消息放入 GCM json 包装器中时,该消息仅适用于 Android 推送。
在代码中,我使用 TargetARN 中的应用程序名称来检测平台并相应地调整有效负载。
注意:Windows 代码未经测试。
最后一项值得注意的是 SNS 似乎需要的疯狂嵌套 json 编码。
I used Brad's as the starting point, thanks Brad!
I had the change the localtime to gmtime.
I was also not using topics but Target ARNs and using role based authentication.
I had to pass the SecurityToken to get it to work and the Message only worked for android push when I put it in a GCM json wrapper.
In the code I use my Application name in the TargetARN to detect the platform and adjust the payload accordingly.
Note: Windows code it untested.
One last item of note is the crazy nested json encoding that seems to be required of SNS.