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:
Get categories
Get all channels in a category
Get all groups in a category
Follow/unfollow a category
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 theApp
component, as implemented inApp.js
, as a root component. We have a folder namedcomponents
that ...