November 2019
Beginner
804 pages
20h 1m
English
In order to call the RESTful API, we will use the Fetch API (https://developer.mozilla.org/en-US/docs/Web/API/Fetch_API). It is a standard API of the web, supported by most modern browsers. Fetch defines an interface for fetching resources across the network that is similar to the one of XMLHttpRequest (also known as XHR): https://developer.mozilla.org/en-US/docs/Web/API/XMLHttpRequest.
Fetch has a couple of main concepts:
We can configure the request as needed, for example, by adding credentials, ...
Read now
Unlock full access