如何在 php 上 运行 VIMEO API?
How to run VIMEO API on php?
大家好,我是 PHP 和编程方面的新手。我的问题是,我在 Vimeo 平台上有大量视频。我正在尝试 运行 我的 API 在 PHP 中。以下代码是 API 命令。当我执行它时,我看不到任何结果。
这是 API 文档。请帮助我,因为这是我第一次这样做,我不知道该怎么做。
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title></title>
</head>
<body>
<?php
require '{path_to_root_folder}/autoload.php';
use Vimeo\Vimeo;
$client = new Vimeo("{191e3071cfe69f8d48424621488a76b06c2bd19b}",
"{YDxiujy1nd+s4/w9q4xRq0O1dX0OEu1xs7Fhdce5/H69HJSDWXrYvPV8Y4RHFVPUgMIGsw9fr2+QHzpHPj/x9cmva8sjRA5aBppYDAbZa9Rj/N1/rPWDDJHmgFJ2WI8Y}",
"{c725c21e7827b252d4574be2cbe1220c}");
$response = $client->request('/tutorial', array(), 'GET');
print_r($response);
?>
</body>
</html>
这里可能还缺少另一部分 -- 您是否在服务器上安装了 Vimeo PHP 库?在执行该脚本并向 /tutorial
端点发出请求之前,您需要这样做。
此处列出了 Vimeo 库 SDK:https://developer.vimeo.com/api/libraries. The PHP library specifically can be found on GitHub here: https://github.com/vimeo/vimeo.php。
大家好,我是 PHP 和编程方面的新手。我的问题是,我在 Vimeo 平台上有大量视频。我正在尝试 运行 我的 API 在 PHP 中。以下代码是 API 命令。当我执行它时,我看不到任何结果。 这是 API 文档。请帮助我,因为这是我第一次这样做,我不知道该怎么做。
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title></title>
</head>
<body>
<?php
require '{path_to_root_folder}/autoload.php';
use Vimeo\Vimeo;
$client = new Vimeo("{191e3071cfe69f8d48424621488a76b06c2bd19b}",
"{YDxiujy1nd+s4/w9q4xRq0O1dX0OEu1xs7Fhdce5/H69HJSDWXrYvPV8Y4RHFVPUgMIGsw9fr2+QHzpHPj/x9cmva8sjRA5aBppYDAbZa9Rj/N1/rPWDDJHmgFJ2WI8Y}",
"{c725c21e7827b252d4574be2cbe1220c}");
$response = $client->request('/tutorial', array(), 'GET');
print_r($response);
?>
</body>
</html>
这里可能还缺少另一部分 -- 您是否在服务器上安装了 Vimeo PHP 库?在执行该脚本并向 /tutorial
端点发出请求之前,您需要这样做。
此处列出了 Vimeo 库 SDK:https://developer.vimeo.com/api/libraries. The PHP library specifically can be found on GitHub here: https://github.com/vimeo/vimeo.php。