-
Write a function
logDatathat takes a URL string, makes a GET request to that URL and logs the response to the console. Test your function by making a call to the JSON Placeholder API -
The above function is only able to log the AJAX call's response to the console. Let's make a function that is more flexible. Write a function called
getthat takes a URL string and a callback function as arguments. This function makes a GET request to the passed URL and then invokes the given callback function on the response. Once again, test your function by making a call to the JSON Placeholder API. -
Test the above function with an incorrect endpoint (
'https://jsonplaceholder.typicode.com/postszz'). Since this request results in a 404 response, our function does not give us much helpful information back. Add a condition that checks for a response status of404. For such responses, you should log,"404: Resource not found." -
Let's get some practice using APIs that require a key. We will use Open Weather Map. To use this API, you must sign up for an account to receive an API Key. Please sign up here.
-
Test out your above functions using the Open Weather API.
-
Notifications
You must be signed in to change notification settings - Fork 8
Async Class Practice
License
The-Marcy-Lab-School/async-practice-1
Folders and files
| Name | Name | Last commit message | Last commit date | |
|---|---|---|---|---|
Repository files navigation
About
Async Class Practice
Topics
Resources
License
Stars
Watchers
Forks
Releases
No releases published