Ruby 亚马逊图书搜索

发布于 2024-07-10 15:45:45 字数 57 浏览 6 评论 0原文

有人有一个好的 Ruby 脚本可以使用他们的 API 在 Amazon 上查找书籍(或其他产品)吗?

Does anybody have a good Ruby script for finding books (or other products) on Amazon using their API?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

神爱温柔 2024-07-17 15:45:45

我一直在使用 Amazon/ECS 并取得了巨大成功。 重要的一点是它不是 GPL(而 Ruby/AWS 似乎是),所以如果它对您来说很重要,请小心。

以下是一个示例:

require 'amazon/ecs'

# default options; will be camelized and converted 
# to REST request parameters.
Amazon::Ecs.options = {:aWS_access_key_id => [your access key]}
res = Amazon::Ecs.item_search('ruby')

您可能还想查看一些集成示例 Mephisto 博客系统。

干杯!

I've been using Amazon/ECS with great success. One important point is that it's not GPLed (whereas Ruby/AWS seems to be), so if it's important in your case, take care.

Here is a sample:

require 'amazon/ecs'

# default options; will be camelized and converted 
# to REST request parameters.
Amazon::Ecs.options = {:aWS_access_key_id => [your access key]}
res = Amazon::Ecs.item_search('ruby')

You may also want to have a look at some example of integration with the Mephisto blogging system.

cheers!

〗斷ホ乔殘χμё〖 2024-07-17 15:45:45

我想这种脚本必须使用 Ruby/AWS,就像这样 测试

这里有一个快速介绍

您有一个涉及搜索书籍的完整示例

response = r.keyword_search
('ruby programming', 'books')

I suppose that kind of script would have to use Ruby/AWS, like this test.

You have here an quick introduction.

And you have there a full example involving searching books.

response = r.keyword_search
('ruby programming', 'books')
ぶ宁プ宁ぶ 2024-07-17 15:45:45

VonC 的第三个链接是部分答案。 它引导我到 ruby​​-aaws(注意 - 与 ruby​​-aws 不同)。

然后我找到了这篇博客文章并附有使用它的示例。

VonC's third link was a partial answer. It led me to ruby-aaws (note - different from ruby-aws).

I then found this blog post with an example of using it.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文