Sharma Vikram
Sharma Vikram

Reputation: 2480

How to remove video from Vimeo server using api?

I am trying to remove video from Viemo Pro server using vimeo API in php. but the video not remove from vimeo server. FATAL ERROR uncaught exception are throw in php. I have successfully connected to Vimeo pro API and successfully upload video in Vimeo Pro.

Below is my php Code

 $file_name='https://api.vimeo.com/videos/129529345';
 $uri = $lib->request($file_name,array(),'DELETE');
 echo '<pre>';
 print_r($uri);
 die;

Below is the screenshot

enter image description here

Thanks in Advance

Upvotes: 2

Views: 1626

Answers (3)

Sharma Vikram
Sharma Vikram

Reputation: 2480

My Url is wrong, The url is /videos/127008336 instead of https://api.vimeo.com/videos/127008336

 $file_name='/videos/127008336';
    //  Send this to the API library.
    $uri = $lib->request($file_name,array(),'DELETE');
    echo '<pre>';
    print_r($uri);
    die;

enter image description here

Upvotes: 3

Rameleu
Rameleu

Reputation: 105

As I can see, the provided hostname is

api.vimeo.comhttps

This may cause your FATAL ERROR.

Upvotes: 1

Sevenzzz
Sevenzzz

Reputation: 58

The screenshot is showing you are trying to resolve this address api.vimeo.comhttps, which is unresolveable since vimeo.comhttps does not exist.

Upvotes: 1

Related Questions