YouTube API
Practice Http requests by rebuilding the YouTube landing page.
Last updated
Practice Http requests by rebuilding the YouTube landing page.
Last updated
Summary
Create a , then retrieve and activate your API key.
Use the to practice using the search-list API.
Create a new angular project and begin making request to the API as practiced above.
Build a UI that resembles the YouTube landing page, but iterating over your response objects.
Follow the instructions located here:
You can stop after step 3.
A successful response will look like the following:
Pressing the show code button circled above will allow you to inspect the URL that was used to make the request. Use it as a model for your own requests.
Navigate into the newly created directory.
Create a Github repo.
Follow the instructions on Github to link your project with the new repo.
Create a service to handle your requests to the api.
Following the same process as the SWAPI project add the HTTP Module to your project. Use the below walk through or the SWAPI project as a guide.
Making Http requests using an api key.
Using Angular's HttpClient.
Subscribing to Observables.
using a third party API.
Review the and practice with with try API tool.
Project setup: Use theas a reference
Navigate to your project directory and start a new project. Use the for reference.