Aaron Marasco

Results 17 comments of Aaron Marasco

This project is not abandoned, and part of the reason for moving documentation was to make it easier to keep it up to date with future feature requests. > support...

Could you reach out to your Vimeo support representative, https://vimeo.com/help/contact They can give you more information on the status of this api.

It's probably best to start with the [Getting Started Guide](https://developer.vimeo.com/api/guides/start) on the developer site, and the basic [Uploading Videos](https://developer.vimeo.com/api/guides/videos/upload) guide. The more advanced [Upload Guide](https://developer.vimeo.com/api/upload/videos) will probably be necessary for...

Currently the only way to view when a video completes transcoding is by polling, i.e. `GET /videos/{video_id}?fields=status` If you'd like to see a Webhook interface, please request it at: https://vimeo.com/help/contact

`status` is documented here: https://developer.vimeo.com/api/reference/response/video, if you scroll down about half the page you'll see it / what each state means.

@Vgalaup This is probably a better ticket for Vimeo support, https://vimeo.com/help/contact, we can get the details of your account and the specific video there.

This is a permissions issue with the user running your web app. Tus uploads default to `./vendor/ankitpokhrel/tus-php/.cache` within the webroot - this means, on the default configuration, the user running...

On Windows, `get_current_user()` in PHP will return the username of the user running the application, in most cases it'll be some sort of system account. The CLI tool for permissions...

You need to use an access token authenticated to your user with the `private` scope to access private videos. This also means you cannot pass the access token by the...

This applies to both hide from Vimeo and private videos. The PHP library will automatically add the authentication header for you, but you do need to use a private, authenticated...