如何使用 PHP 为 Amazon EC2 生成 v2 签名?
我想知道是否有人使用 php 成功为其 API 生成了 EC2 v2 签名。 我可以在网上找到的所有示例/库都是针对 v1 签名的,但由于不安全,该版本已被弃用。 实现签名生成的现有库也将受到赞赏。
I am wondering if anyone has successfully generated an EC2 v2 signature for their API using php. All examples/libraries I can find online are for v1 of the signature and that has been deprecated due to insecurities. An existing library that implements the signature generation would be appreciated too.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
http://mierendo.com/software/aws_signed_query/
我相信这是 V2
http://mierendo.com/software/aws_signed_query/
I believe that's V2
这里是一个支持 V2 的 PHP 库。 不过我还没试过。
Here's a PHP Library that supports V2. I haven't tried it though.
以下是我编写并一直在使用的一些代码:
以下是如何使用它:
这将在 SimpleDB 上执行
ListDomains
查询。 该函数本身将返回亚马逊的输出。 对于更复杂的命令(即:PUT、POST 等),不需要进行任何重大修改。Here's some code I've written and have been using:
Here's how you'd use it:
This would perform a
ListDomains
query on SimpleDB. The function itself will return Amazon's output. For more complicated commands, (i.e.: PUT, POST, etc.) there aren't any major modifications that need to be made.使用常量 AWSSECRET 对签名进行哈希处理,而不是 $AWSKEY(未引用的变量)。
Use constant AWSSECRET to hash the signature, NOT $AWSKEY (an unreferenced variable).