首页 > 解决方案 > 如何在 opensubtitle API 中使用语言过滤搜索

问题描述

如何在 opensubtitles 新 api (api.opensubtitles.com) 中根据语言过滤搜索

我的代码

axios.get(`https://api.opensubtitles.com/api/v1/subtitles?imdb_id=${req.query.imdb_id}`, headers)
   .then((response)=>{
       res.json(response.data)
   })
   .catch((err)=>{
       res.json(err)
   })

标签: node.jsaxiossubtitle

解决方案


推荐阅读