Authenticating Requests
Learn to make authenticated requests to REST API endpoints using bearer tokens.
We'll cover the following...
Making authenticated HTTP requests
In most cases, we will be interacting with endpoints that require some form of authentication and possibly authorization for us to fetch or make changes to resources. Therefore, we would need to send the user’s credentials with a request to validate that it is coming from a known source.
There are several different ways to authenticate ...