这表明它确实存在:
https://youtube-eng.googleblog.com/2009/10/oembed-support_9.html
说,但当我这样做的时候,我什么也得不到
curl "https://www.youtube.com/oembed" -d 'format=json' -d 'url=https://www.youtube.com/watch?v=uXBDgLglFig'
有人知道API是否已经被弃用了吗?
您正在使用传递给curl
的选项发出POST
请求。您需要发出GET
请求,如下所示:
curl 'https://www.youtube.com/oembed?format=json&url=https%3A%2F%2Fwww.youtube.com%2Fwatch%3Fv%3DuXBDgLglFig'
请注意,URL参数必须是URL编码的。你如何做到这一点取决于你提出请求时使用的语言。