request-authentication tagged requests and articles

Categorized request examples and articles tagged with [request-authentication] keyword
How do I send GET request with Basic Server Authentication?
To send a GET request to the server with Basic Authentication credentials, you must pass the "Authorization: Basic {credentials}" HTTP header to the server with the user's credentials encoded in a Base64 string in the login:password format. An Authorization HTTP header must be sent with every request for a protected resource. In this Basic Server Authentication example, we send a GET request to the ReqBin echo URL with user credentials. Click Send to execute GET Request with the Basic Server Authentication credentials online and see the results.