API Testing tutorials 1 - Idempotency, Safe, Cache and Versioning Concept
We are going to understand some of the important Concepts in rest API for sample example I have added a screenshot from Postman which is a popular API testing.
Concept in rest API
we are going to cover four important concepts like:
- Idempotency
- save
- cache
- versioning
Let us understand the first concept idempotency:
Idempotent methods can be called multiple times with same input, and it produces same result.
example if we are having a get request and we are hitting it multiple times then we are going to get same result so what we can say get is idempotent.
I have talked about these concepts in detail in this video:
Comments
Post a Comment