0

我正在寻找一种服务(API)来搜索播客及其剧集。

目标:我想设置一个搜索词 - 足球,结果是与该词相关的播客剧集(标题、描述、标签)。

我查看了https://itunes.apple.com/search?来自https://developer.apple.com/library/archive/documentation/AudioVideo/Conceptual/iTuneSearchAPI/Searching.html#//apple_ref/doc/uid/TP40017632-CH5-SW2 但不幸的是,这只是给了我播客而不是剧集。

你知道如何达到我的目标吗?

谢谢你。

4

1 回答 1

-1

自 2021 年 1 月 15 日起,iTunes API 不允许搜索剧集。

但是您可以尝试其他 3rd 方播客 API。

例如,Listen Notes API 允许搜索(几乎)所有可公开访问的基于 RSS 的播客剧集:https ://www.listennotes.com/api/

播客搜索 API 文档的屏幕截图

    导入请求
    
    url = 'https://listen-api.listennotes.com/api/v2/search?q=star%20wars&sort_by_date=0&type=episode&offset=0&len_min=10&len_max=30&genre_ids=68%2C82&published_before=1580172454000&published_after=0&only_in=title%2Cdescription_language=English&safe =0'
    标题 = {
      'X-ListenAPI-Key': '',
    }
    response = requests.request('GET', url, headers=headers)
    打印(response.json())

免责声明:我构建了 Listen Notes API。

于 2021-01-15T19:08:46.053 回答