Mar 27: Working with APIs
Learning Objectives
After today's class, you should be able to:
- Explain how to use the keywords
async
andawait
in JavaScript. - Make requests to a third-party API using PostMan and
fetch()
. - Handle successful and unsuccessful responses from a third-party API.
Lesson Outline¶
Slides [25 min]
- 26_Fetch-Postman.pdf – courtesy Dr. Isaac Wang
Tutorial [30 min]
- Exploring the Canvas API – see instructions below
Work Time [20 min]
API Tutorial¶
Note
We'll use Hoppscotch, an open-source alternative to Postman that runs in the browser (using local storage) and does not require creating an account.
Step 1: Hoppscotch Setup¶
- Install the Hoppscotch Extension for your browser. This extension allows you to override CORS restrictions for cross-origin requests while running Hoppscotch.
- Open Hoppscotch. Notice the sample url https://echo.hoppscotch.io is provided for testing. Click the Send button to see the JSON response.
- In the right sidebar, click the "+ New" button to add a new collection.
Name the collection
Canvas
(this is just a way to organize your requests). - Hover over the Canvas collection, and three toolbar buttons should appear.
Click the "Add Request" button. Name the request
List your courses
. A new editor tab should appear in the main section on the left. - Change the URL for the GET request to https://canvas.jmu.edu/api/v1/courses. Try pressing the Send button; you should get a network error. Open the DevTools console to see the error (Access to … has been blocked by CORS policy).
- Click the radio button for "Browser extension" to bypass the CORS policy. Then click Send again; you should now see a JSON response that says you are unauthenticated.
Step 2: Canvas API Token¶
- In a new tab, go to your User Settings in Canvas.
- Scroll down to the bottom of the "Approved Integrations" section and click the "+ New Access Token" button.
- Describe the purpose of your token (Ex:
CS 343 Activity
orHoppscotch
). - Give a relatively short expiration date, like the end of today's class. You can always make another token later.
- Click the "Generate Token" button. Leave the token visible until you get a chance to copy it during the next step.
- In Hoppscotch, hover over the Canvas collection, click the "3 dots" () menu, and click Properties.
- Click the Authorization tab, change the Authorization Type to Bearer, and paste your Canvas token from the previous step.
- Then click the Save button. (Any requests you make in the Canvas collection will automatically use this API token.)
- Click the Send button. This time, you should see a longer JSON response containing data about your courses.
- Add another request to the Canvas collection (like you did in Step 4).
- Name the request
Get a single course
, and click the Save button. - Change the URL to https://canvas.jmu.edu/api/v1/courses/2071270.
- Click Send, and you should see information about this course.
- Name the request
- See the All API Resources section of the Canvas API documentation for other requests that you can make.
Step 3: Request via fetch()
¶
- Click the Generate Code () button on the right toolbar (between the main section and the right sidebar).
- Change the dropdown to JavaScript - Fetch. Then click the Copy () button.
- Open the DevTools console, and paste the JavaScript code. Press Enter to run the code. You should see the same error as before (Access to … has been blocked by CORS policy).
- Switch to a tab where you are already logged into Canvas, and open the DevTools console. Press the Up arrow to recall the previous code, and press Enter. This time, the code should run without error.
- Press the Up arrow again to edit your code.
Remove the
options
variable (in both places), so that your API token is not used. Press Enter, and notice that the response succeeds anyway. Can you explain why?
Step 4: Test Other APIs¶
- In Hoppscotch, create a new collection named
Free APIs
. Add the following requests to the collection:- Dog Facts, https://dogapi.dog/api/facts?number=5
- Get Rhymes, https://rhymebrain.com/talk?function=getRhymes&word=web
- Image Details, https://picsum.photos/id/0/info
- Run each of the above examples, both in Hoppscotch and in JavaScript. Try rewriting the JavaScript as shown below.
- Try accessing the APIs that you will use for your group project. See the collective list of free APIs on GitHub for ideas.
- See the Hoppscotch Documentation for more advanced examples of how to use Hoppscotch.
Tip
The autogenerated code:
const url = 'https://picsum.photos/id/0/info';
const options = {method: 'GET'};
try {
const response = await fetch(url, options);
const data = await response.json();
console.log(data);
} catch (error) {
console.error(error);
}
fetch('https://picsum.photos/id/0/info')
.then(response => response.json())
.then(data => console.log(data))
.catch(error => console.error(error));