Demo Application

Learn how to build a functional React application using Vimeo APIs.

We'll cover the following...

This lesson walks us through a React application that integrates Vimeo APIs. We used the following endpoints in the application workflow:

  1. Get categories

  2. Get all channels in a category

  3. Get all groups in a category

  4. Follow/unfollow a category

  5. Search videos

Workflow and APIs

Let’s dive into the code and see how we’ve integrated different Vimeo APIs into our React application.

  • For our React application, index.js renders the App component, as implemented in App.js, as a root component. We have a folder named components that ...