Using REST-assured to Test OAuth 2.0 flow Examples
OAuth 2.0 provides four different flows, but the main goal of each flow is to obtain an access_token and use it to access protected resources.
Read more
Read moreREST-assured Examples: GET, POST, PUT, PATCH, DELETE
This post explains how to send API HTTP Requests using REST-assured library. Examples cover GET
, POST
, PUT
, PATCH
and DELETE
requests.
Read more
Read moreHow to Use CURL to Send API Requests
In this article, we’re going to discuss how to use curl
to interact with RESTful APIs. curl
is a command-line utility that can be used to send requests to an API.
Read more
Read moreHTTP Status Codes With Explanations
HTTP Status Codes or Response Codes are grouped into five categories. 1×× Informational, 2×× Success, 3×× Redirection, 4×× Client Error, 5×× Server Error.
Read more
Read moreHTTP Basics for Software Testers
In this article, we’ll explain some of the most common HTTP terminologies and their meanings. This knowledge is especially useful when testing APIs.
Read more
Read moreDifference Between PUT and PATCH Requests
What is the main difference between PUT
and PATCH
requests, and when should we use one over the other?
Read more
Read more