我正在使用Wistia线框进行视频托管。我使用Curl PHP上传了视频。但是当我尝试使用 hased_id [从wistia收到,在上传视频时]删除特定视频时,我没有收到来自Wistia的任何回复,并且该视频未在Wistia中删除。谁能解决我的问题。这是我的代码。
<?php
if ($_POST['submit']) {
$video_id=$_POST['video_id'];
$api_password ='0f61*********************************************5';
$ch = curl_init();
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_URL,"https://api.wistia.com/v1/medias/".$video_id.".json?api_password=.$api_password.");
curl_setopt($ch, CURLOPT_CUSTOMREQUEST,"DELETE");
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$result = curl_exec($ch);
curl_close($ch);
}
?>
<form name="upload-form" method="POST" enctype="multipart/form-data">
<div>
<h1>Video </h2>
<input type="hidden" value="sfcnyx1ra8" name="video_id">
<input type="submit" value="Delete" name="submit" />
</div>
</form>