Vimeo oEmbed 无法使用 curl+PHP

Vimeo oEmbed not working with curl+PHP

我正在尝试使用 oEmbed 来测试 Youtube 或 Vimeo 视频是否存在。我的代码适用于 Youtube,但不适用于 Vimeo,即使我遵循 Vimeo's official documentation for oEmbed 和此处提供的示例也是如此。为什么我的代码不适用于 Vimeo?我得到 Youtube 的服务器响应 200,但 Vimeo 的服务器响应 0。我的代码是:

<?php

//Problematic case: I get 0 as a server reponse
$cURL = curl_init("https://vimeo.com/api/oembed.json?url=https%3A//vimeo.com/76979871");

// Youtube case - works fine: server response = 200
// $cURL = curl_init("http://www.youtube.com/oembed?url=https://www.youtube.com/watch?v=ebXbLfLACGM");

// Set option 1: return the result as a string
curl_setopt($cURL, CURLOPT_RETURNTRANSFER, true);

// Set option 2: Follow any redirect
curl_setopt($cURL, CURLOPT_FOLLOWLOCATION, true);

// Execute the query
$cURLresult = curl_exec($cURL);

// Get the HTTP response code
$response = curl_getinfo($cURL, CURLINFO_HTTP_CODE);

?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Server response</title>
</head>
<body>

<h1><?php print "Server response: " . $response; ?></h1>


</body>
</html>

问题来自使用本地主机连接到 Vimeo。 Localhost 适用于 Youtube,但不适用于 Vimeo。我已经按照另一位成员的建议在真实服务器中测试了上述脚本,一切正常。

历史教训:始终在真实服务器中测试有问题的外部连接,而不是在本地主机上。