使用亚马逊产品 API 寻找相似的艺术家
我对亚马逊产品 API 比较陌生,我正在尝试将相似的艺术家拉回到我为相似性查找提供的项目上。
例如,使用以下参数:
- ItemId='B00136JMX6'
- Operation='SimilarityLookup'
- ResponseGroup='ItemAttributes,Images'
- Availability='Available'
- SearchIndex='MP3Downloads'
我仅收到 Johnny Cash 的其他歌曲。
有没有办法找到类似卡什先生的其他艺术家?
I'm relatively new to the Amazon Product API and I am attempting to pull back similar artists to the artist on an item I am providing for the Similarity Lookup.
For instance using the following parameters:
- ItemId='B00136JMX6'
- Operation='SimilarityLookup'
- ResponseGroup='ItemAttributes,Images'
- Availability='Available'
- SearchIndex='MP3Downloads'
I receive only other songs by Johnny Cash.
Is there a way to find other artists similar to Mr. Cash?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我花了很多时间使用这两个 API,是的,很容易从 Last.fm 找到五位类似的艺术家,然后您可以根据这些艺术家进行搜索。您也许可以使用 MusicBrainz...他们还使用数据库中的 ASIN 编号。我不太使用 MusicBrainz,但它是我考虑过的另一个选择。
祝你好运!
我使用这些 API 编写的 PHP 代码
I've spent a lot of time working with both APIs and yes it is easy to get five similar artists from Last.fm then you could search based on those artists. You could perhaps use MusicBrainz... They also make use of ASIN numbers in their database. I don't make use of MusicBrainz much but it is another option I looked at.
Good luck!
My code in PHP for working with these APIs