You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When I upload a video using Vimeo API in my laravel project, I'm getting an error "file_put_contents(): Write of 211 bytes failed with errno=13 Permission denied"
I'm using this function in my laravel app.
$client = new Vimeo($client_id, $secret, $token);
When I upload a video using Vimeo API in my laravel project, I'm getting an error "file_put_contents(): Write of 211 bytes failed with errno=13 Permission denied"
I'm using this function in my laravel app.
$client = new Vimeo($client_id, $secret, $token);
$response = $client->upload('F:/video/test.mp4', [
'name' => 'Test'
]);
print_r($response);
The text was updated successfully, but these errors were encountered: