VimeoAPIException - Uncaught exception with message 'Not allowed'

243 Views Asked by At

When I try to set video privacy exceptions is thrown.

$vimeo->call('vimeo.videos.setPrivacy', array('privacy' => 'anybody', 'video_id' => $video_id));

Am I missing something?

1

There are 1 best solutions below

0
On

The code you have provided is part of the old, deprecated Advanced API. Please switch to the new API.

To set the video privacy using the new API, and the new PHP Library, you can use the following code

$vimeo = new \Vimeo\Vimeo($client_id, $client_secret); $vimeo->setToken($token); $vimeo->request('/videos/' . $video_id, array( 'privacy' => array('view' => 'anybody') ), 'PATCH');