使用过滤器搜索 Soundcloud API
Search Soundcloud API with filters
根据 Soundcloud 文档(https://developers.soundcloud.com/docs/api/guide#search、
"Some resource types, such as sounds, can be filtered by fields like
license, duration or tag_list."
是否存在一些可以像这样过滤哪些属性的列表?例如,假设我想查找名称为 'billy' 且拥有 100 到 1000 名关注者的艺术家。我希望我能做到(使用 Ruby 客户端)
client.get('/users', q:'billy', followers_count: {from:1000, to:10000})
但是这些 followers_count 限制在结果中没有得到遵守。为什么不?
您link说的页面
有关搜索字段和过滤器的完整列表,请参阅您要搜索的资源类型的API参考。
根据 Soundcloud 文档(https://developers.soundcloud.com/docs/api/guide#search、
"Some resource types, such as sounds, can be filtered by fields like license, duration or tag_list."
是否存在一些可以像这样过滤哪些属性的列表?例如,假设我想查找名称为 'billy' 且拥有 100 到 1000 名关注者的艺术家。我希望我能做到(使用 Ruby 客户端)
client.get('/users', q:'billy', followers_count: {from:1000, to:10000})
但是这些 followers_count 限制在结果中没有得到遵守。为什么不?
您link说的页面
有关搜索字段和过滤器的完整列表,请参阅您要搜索的资源类型的API参考。