运行API上的位 - 无法删除视频

时间:2014-01-09 03:23:12

标签: video video-streaming

我在运行API上使用比特,视频托管组件来管理视频,播放器......(类似于youtube,vimeo)  我已在here

Bits on the run forum 中发布了此问题

但是我在这里重新发布这个问题,以便更清楚。

删除视频时遇到问题。我无法删除列表视频中的任何视频。但是我可以管理视频,我可以按功能更新信息视频$ botrAPI-> call(“/ videos / update”,$ params);

这是我抓到的错误:

array
(
    'status' => 'error'
    'message' => 'video_key: Video with the key rpmbRU62 does not exist'
    'code' => 'NotFound'
    'title' => 'Not Found'
)

我确信我可以通过video_key获取和更新信息rpmbRU62

我删除视频的功能:

 public static function deleteVideo($key)
    {
        $botrAPI = self::getInstance();
        $params  = array('video_key' => $key);
        $response = $botrAPI->call("/videos/delete", $params);
        dump($response);
        if ($response['status'] == "error") {
            return array(
                'status'  => $response['status'],
                'message' => $response['message'],
                'code'    => $response['code'],
                'title'   => $response['title'],
            );
        }


        return array(
            'status' => $response['status'],
        );
    }

请帮我解决此问题。

0 个答案:

没有答案