API stands for Application Programming Interface. APIs allow communication between applications or services by providing a set of functions and procedures. API testing involves testing APIs and their integration with services to ensure correct functionality, reliability, performance, and security. Postman is a popular tool for API development that allows users to design, build, test, and document APIs through a graphical user interface.
A Practical Guide to Automating End-to-End API TestingpCloudy
油
In recent times we have heard alot about APIs and their applications. It has gained so much popularity that today it has become one of the integral parts of the Software Development process. In this blog post we will learn about API, and how to test the same using automation. API is the abbreviation for Application Programming Interface. It is a set of methods and procedures that developers expose to other programmers to have their applications communicate and interact with other applications. Designing an API is half of the work, and the rest half is about testing the same to provide a truly secure, reliable and scalable connection between platforms.
Now to perform API testing we have a wide variety of tools available in the market, but the most used one is Rest Assured framework. This is quite easy to use and as it has a steep learning curve. Before we will explore the usage of API Automation, we should understand an API and specifically what are the validations we need to perform in end-to-end API Testing.
API testing is a type of software testing that involves testing application programming interfaces (APIs) directly and as part of integration testing to determine if they meet expectations for functionality, reliability, performance, and security.
Best practices and advantages of REST APIsAparna Sharma
油
In this article, I am going to share the best practices and the advantages of REST APIs, as I am working with a team on a REST-based web application. Newsdata.io news API is a REST-based API that fetches news data from thousands of news websites in JSON format. Therefore, I have a basic understanding of REST APIs that I am going to share with you.
The document discusses APIs, defining them as interfaces that allow applications to communicate and share data over a network. It notes that APIs act as an interface between clients and servers, exposing backend data through operations, inputs, outputs, and data types. The document also outlines the benefits of APIs in standardizing communication and enabling reusability. It introduces common API terminology and types, focusing on web APIs which are the most widely used.
Top 20 API Testing Interview Questions.pdfAnanthReddy38
油
Magnitias Web services Testing Training will provide you complete knowledge on Web services, API and their functionality. This API Testing course enables you to develop robust automation Framework for APIs test cases and how to test Web services and REST API using SoapUI& Rest Assured.
When SaaS companies use Blendr.io an embedded integration platform to boost their native integrations offering, we often receive the question What is a good API? At Blendr.io, we have been working with hundreds of APIs and compiled an API Checklist for SaaS companies.
Everyday we create services for our systems. A lot of people create RESTful APIs but much more can be accomplished by following best practices and treating your APIs as a product to be consumed by fellow team members, systems and 3rd party consumers.
We will discuss what makes a great RESTful API and share some of our experiences building some that power real systems.
This was part of JOSA TechTalks project within Jordan Open Source Association, presented by Yazan Quteishat and Tambi Jalouqa.
API testing validates application programming interfaces (APIs). API testing focuses on functionality, reliability, performance, and security of programming interfaces. Common protocols for API testing include HTTP, REST, SOAP, JMS, and UDDI. REST uses normal HTTP verbs like GET, POST, PUT, and DELETE and supports data formats like plain text, HTML, XML, and JSON. CRUD (create, read, update, delete) operations can be performed through HTTP requests in API testing.
This document provides an overview of web services and APIs for mobile application development. It defines web services and APIs, describes their characteristics and differences. It also discusses the common types of web services for Android like XML-RPC, UDDI, SOAP and REST. The document explains the components of an API request including endpoints, headers, methods, and request data. It introduces JSON formats and provides examples. Finally, it discusses tools for testing APIs like web browsers and Postman and introduces fake APIs for development and testing purposes.
API documentation provides information about how to use an application programming interface (API). It explains what an API is, how APIs allow applications to interact and exchange data, and the benefits of using APIs. The documentation also describes how APIs work by sending requests and receiving responses, and who typically creates APIs and their documentation. It provides details on API requests and responses, different types of APIs, and who the target audience of API documentation is. It recommends tools like Swagger that can automatically generate API documentation from code annotations to help technical writers complement the generated documentation.
API documentation provides information about how to use an application programming interface (API). It explains what an API is, how APIs allow applications to interact and exchange data, and the benefits of using APIs. The documentation also describes how APIs work by sending requests and receiving responses, and who typically creates APIs and their documentation. It provides details on API requests and responses, different types of APIs, and who the target audience is for API documentation. It also recommends tools like Swagger that can automatically generate API documentation from code annotations to help technical writers complement the generated documentation.
Web services allow programs to communicate over a network. There are two main types: SOAP and REST. SOAP uses XML and HTTP POST, while REST can use HTTP verbs like GET and POST with data formats like JSON or XML. Authentication for web services can be done with basic authentication, tokens, or OAuth. REST follows principles like using resources and URIs, being stateless, and cacheable. SOAP defines an envelope, header, and body for messages in an XML format.
This document provides an overview of REST API automation testing using Java and TestNG. It discusses key concepts like APIs, web services, SOAP vs REST, HTTP requests, and JSON. It outlines a roadmap for setting up a REST API automation framework in Java/Maven including creating dummy APIs, writing tests with REST Assured, handling request/response bodies, response parsing, and designing the framework structure. The document contains 9 chapters that cover topics like installing dependencies, making HTTP requests, different ways to create request bodies, parsing response data, API chaining, and implementing the framework with TestNG annotations.
Rest api best practices comprehensive handbookKaty Slemon
油
This document provides an overview of REST API best practices. It discusses the key aspects of REST API design, including the 6 architectural constraints of REST (uniform interface, client-server, stateless, cacheable, layered system, and code on demand). It also outlines 12 best practices for REST API design, such as using nouns instead of verbs in URIs, plural naming conventions, implementing HATEOAS, and using Swagger for documentation. The document serves as a comprehensive guide to building robust RESTful APIs.
The document discusses various Salesforce APIs including REST API, SOAP API, Bulk API, and Streaming API. It provides details on when to use each API and how to make calls to external APIs from Apex. REST API is recommended for most use cases due to its simplicity. Named credentials can be used to streamline authentication for external API calls from Apex.
The Schema-first API design approach advocates for writing your API definition first in one of many API Specification languages before writing any code. This talk introduces you to the realm of Schema-First API design and how to get started with the OpenAPI ecosystem.
The document discusses tips for crafting APIs according to REST principles. It outlines best practices like using nouns for resource identifiers, applying CRUD operations consistently via POST, GET, PUT, DELETE, and including hypermedia links to allow navigating through application states. Other topics covered include API versioning, error handling, and choosing an implementation technology based on performance needs like number of daily accesses. The document emphasizes designing APIs pragmatically with the goal of making them easy for application developers to use.
The document provides information on APIs and RESTful web services. It defines an API as a software intermediary that enables applications to communicate. REST is an architectural style for developing web services that uses HTTP and treats resources uniformly. The document lists common HTTP methods used in REST like GET, POST, PUT, and DELETE and describes their purposes. It also discusses API documentation, testing procedures, challenges, and tools.
Session tracking allows a server to maintain state for a user's sequential requests. There are five main session tracking methods: user authorization, hidden fields, URL rewriting, cookies, and session tracking APIs. Cookies are the most commonly used method, where the server sends a cookie containing identifying information to the user's browser on each request. Session tracking APIs provide an abstraction layer that handles session tracking tasks for the developer.
Creating a World-Class RESTful Web Services APIDavid Keener
油
Companies like Amazon, Google and Yahoo have published web services API's that empower developers to create mash-ups, add-ons and full-scale applications. The creation of such API's, however, is not exclusively the domain of large, multi-national corporations. Learn how to architect, build and field a well-designed and scalable RESTful web services API that will allow your business to leverage the capabilities of the developer community. This presentation includes real-life examples from the Grab Networks RESTful API, which provides access to information about the hundreds of thousands of news videos available through Grab Networks' distribution network.
API testing has established a trend for automated testing as software development teams become more technologically oriented. More tools will be developed to meet these requirements. Regardless of how difficult it is to find a tool that can do everything, adopting a toolset that meets a companys needs while increasing revenue is critical. Before choosing one, consider how each API testing tool may be better suited for specific purposes and what features are essential for your software development workflows.
Learn how to take advantage of Apigility to create APIs from scratch or to expose current functionality from an existent system. You'll learn the core API concepts, processes, functionality, logic, and in general how you can create good APIs, including documentation and all the considerations you must have.
Team Science in the AI Era: Talk for the Association of Cancer Center Administrators (ACCA) Team Science Network (April 2, 2025, 3pm ET)
Host: Jill Slack-Davis (https://www.linkedin.com/in/jill-slack-davis-56024514/)
20250402 Team Science in the AI Era
These slides: TBD
Jim Twin V1 (English video - Heygen) - https://youtu.be/T4S0uZp1SHw
Jim Twin V1 (French video - Heygen) - https://youtu.be/02hCGRJnCoc
Jim Twin (Chat) Tmpt.me Platform https://tmpt.app/@jimtwin
Jim Twin (English video OpenSource) https://youtu.be/mwnZjTNegXE
Jim Blog Post - https://service-science.info/archives/6612
Jim EIT Article (Real Jim) - https://www.eitdigital.eu/newsroom/grow-digital-insights/personal-ai-digital-twins-the-future-of-human-interaction/
Jim EIT Talk (Real Jim) - https://youtu.be/_1X6bRfOqc4
Reid Hoffman (English video) - https://youtu.be/rgD2gmwCS10
Stages of combustion, Ignition lag, Flame propagation, Factors affecting flame
speed, Abnormal combustion, Influence of engine design and operating
variables on detonation, Fuel rating, Octane number, Fuel additives, HUCR,
Requirements of combustion chambers of S.I. Engines and its types.
More Related Content
Similar to API testing Notes and features, difference.pdf (20)
When SaaS companies use Blendr.io an embedded integration platform to boost their native integrations offering, we often receive the question What is a good API? At Blendr.io, we have been working with hundreds of APIs and compiled an API Checklist for SaaS companies.
Everyday we create services for our systems. A lot of people create RESTful APIs but much more can be accomplished by following best practices and treating your APIs as a product to be consumed by fellow team members, systems and 3rd party consumers.
We will discuss what makes a great RESTful API and share some of our experiences building some that power real systems.
This was part of JOSA TechTalks project within Jordan Open Source Association, presented by Yazan Quteishat and Tambi Jalouqa.
API testing validates application programming interfaces (APIs). API testing focuses on functionality, reliability, performance, and security of programming interfaces. Common protocols for API testing include HTTP, REST, SOAP, JMS, and UDDI. REST uses normal HTTP verbs like GET, POST, PUT, and DELETE and supports data formats like plain text, HTML, XML, and JSON. CRUD (create, read, update, delete) operations can be performed through HTTP requests in API testing.
This document provides an overview of web services and APIs for mobile application development. It defines web services and APIs, describes their characteristics and differences. It also discusses the common types of web services for Android like XML-RPC, UDDI, SOAP and REST. The document explains the components of an API request including endpoints, headers, methods, and request data. It introduces JSON formats and provides examples. Finally, it discusses tools for testing APIs like web browsers and Postman and introduces fake APIs for development and testing purposes.
API documentation provides information about how to use an application programming interface (API). It explains what an API is, how APIs allow applications to interact and exchange data, and the benefits of using APIs. The documentation also describes how APIs work by sending requests and receiving responses, and who typically creates APIs and their documentation. It provides details on API requests and responses, different types of APIs, and who the target audience of API documentation is. It recommends tools like Swagger that can automatically generate API documentation from code annotations to help technical writers complement the generated documentation.
API documentation provides information about how to use an application programming interface (API). It explains what an API is, how APIs allow applications to interact and exchange data, and the benefits of using APIs. The documentation also describes how APIs work by sending requests and receiving responses, and who typically creates APIs and their documentation. It provides details on API requests and responses, different types of APIs, and who the target audience is for API documentation. It also recommends tools like Swagger that can automatically generate API documentation from code annotations to help technical writers complement the generated documentation.
Web services allow programs to communicate over a network. There are two main types: SOAP and REST. SOAP uses XML and HTTP POST, while REST can use HTTP verbs like GET and POST with data formats like JSON or XML. Authentication for web services can be done with basic authentication, tokens, or OAuth. REST follows principles like using resources and URIs, being stateless, and cacheable. SOAP defines an envelope, header, and body for messages in an XML format.
This document provides an overview of REST API automation testing using Java and TestNG. It discusses key concepts like APIs, web services, SOAP vs REST, HTTP requests, and JSON. It outlines a roadmap for setting up a REST API automation framework in Java/Maven including creating dummy APIs, writing tests with REST Assured, handling request/response bodies, response parsing, and designing the framework structure. The document contains 9 chapters that cover topics like installing dependencies, making HTTP requests, different ways to create request bodies, parsing response data, API chaining, and implementing the framework with TestNG annotations.
Rest api best practices comprehensive handbookKaty Slemon
油
This document provides an overview of REST API best practices. It discusses the key aspects of REST API design, including the 6 architectural constraints of REST (uniform interface, client-server, stateless, cacheable, layered system, and code on demand). It also outlines 12 best practices for REST API design, such as using nouns instead of verbs in URIs, plural naming conventions, implementing HATEOAS, and using Swagger for documentation. The document serves as a comprehensive guide to building robust RESTful APIs.
The document discusses various Salesforce APIs including REST API, SOAP API, Bulk API, and Streaming API. It provides details on when to use each API and how to make calls to external APIs from Apex. REST API is recommended for most use cases due to its simplicity. Named credentials can be used to streamline authentication for external API calls from Apex.
The Schema-first API design approach advocates for writing your API definition first in one of many API Specification languages before writing any code. This talk introduces you to the realm of Schema-First API design and how to get started with the OpenAPI ecosystem.
The document discusses tips for crafting APIs according to REST principles. It outlines best practices like using nouns for resource identifiers, applying CRUD operations consistently via POST, GET, PUT, DELETE, and including hypermedia links to allow navigating through application states. Other topics covered include API versioning, error handling, and choosing an implementation technology based on performance needs like number of daily accesses. The document emphasizes designing APIs pragmatically with the goal of making them easy for application developers to use.
The document provides information on APIs and RESTful web services. It defines an API as a software intermediary that enables applications to communicate. REST is an architectural style for developing web services that uses HTTP and treats resources uniformly. The document lists common HTTP methods used in REST like GET, POST, PUT, and DELETE and describes their purposes. It also discusses API documentation, testing procedures, challenges, and tools.
Session tracking allows a server to maintain state for a user's sequential requests. There are five main session tracking methods: user authorization, hidden fields, URL rewriting, cookies, and session tracking APIs. Cookies are the most commonly used method, where the server sends a cookie containing identifying information to the user's browser on each request. Session tracking APIs provide an abstraction layer that handles session tracking tasks for the developer.
Creating a World-Class RESTful Web Services APIDavid Keener
油
Companies like Amazon, Google and Yahoo have published web services API's that empower developers to create mash-ups, add-ons and full-scale applications. The creation of such API's, however, is not exclusively the domain of large, multi-national corporations. Learn how to architect, build and field a well-designed and scalable RESTful web services API that will allow your business to leverage the capabilities of the developer community. This presentation includes real-life examples from the Grab Networks RESTful API, which provides access to information about the hundreds of thousands of news videos available through Grab Networks' distribution network.
API testing has established a trend for automated testing as software development teams become more technologically oriented. More tools will be developed to meet these requirements. Regardless of how difficult it is to find a tool that can do everything, adopting a toolset that meets a companys needs while increasing revenue is critical. Before choosing one, consider how each API testing tool may be better suited for specific purposes and what features are essential for your software development workflows.
Learn how to take advantage of Apigility to create APIs from scratch or to expose current functionality from an existent system. You'll learn the core API concepts, processes, functionality, logic, and in general how you can create good APIs, including documentation and all the considerations you must have.
Team Science in the AI Era: Talk for the Association of Cancer Center Administrators (ACCA) Team Science Network (April 2, 2025, 3pm ET)
Host: Jill Slack-Davis (https://www.linkedin.com/in/jill-slack-davis-56024514/)
20250402 Team Science in the AI Era
These slides: TBD
Jim Twin V1 (English video - Heygen) - https://youtu.be/T4S0uZp1SHw
Jim Twin V1 (French video - Heygen) - https://youtu.be/02hCGRJnCoc
Jim Twin (Chat) Tmpt.me Platform https://tmpt.app/@jimtwin
Jim Twin (English video OpenSource) https://youtu.be/mwnZjTNegXE
Jim Blog Post - https://service-science.info/archives/6612
Jim EIT Article (Real Jim) - https://www.eitdigital.eu/newsroom/grow-digital-insights/personal-ai-digital-twins-the-future-of-human-interaction/
Jim EIT Talk (Real Jim) - https://youtu.be/_1X6bRfOqc4
Reid Hoffman (English video) - https://youtu.be/rgD2gmwCS10
Stages of combustion, Ignition lag, Flame propagation, Factors affecting flame
speed, Abnormal combustion, Influence of engine design and operating
variables on detonation, Fuel rating, Octane number, Fuel additives, HUCR,
Requirements of combustion chambers of S.I. Engines and its types.
We need to layer the technology onto existing workflows
Follow the teachers who inspire you because that instills passion Curiosity & Lifelong Learning.
You can benefit from generative AI even when its intelligence is worse-because of the potential for cost and time savings in low-cost-of-error environments.
Bot tutors are already yielding effective results on learning and mastery.
GenAI may increase the digital divide- its gains may accrue disproportionately to those who already have domain expertise.
GenAI can be used for Coding
Complex structures
Make the content
Manage the content
Solutions to complex numerical problems
Lesson plan
Assignment
Quiz
Question bank
Report & summary of content
Creating videos
Title of abstract & summaries and much more like...
Improving Grant Writing
Learning by Teaching Chatbots
GenAI as peer Learner
Data Analysis for Non-Coders
Student Course Preparation
To reduce Plagiarism
Legal Problems for classes
Understanding Student Learning in Real Time
Simulate a poor
Faculty co-pilot chatbot
Generate fresh Assessments
Data Analysis Partner
Summarize student questions in real-time
Assess depth of students' understanding
The skills to foster are Listening
Communicating
Approaching the problem & solving
Making Real Time Decisions
Logic
Refining Memories
Learning Cultures & Syntax (Foreign Language)
Chatbots & Agentic AI can never so what a professor can do.
The need of the hour is to teach Creativity
Emotions
Judgement
Psychology
Communication
Human Emotions
Through various content!
URLS and routing in odoo 18 - Odoo 際際滷sCeline George
油
In Odoo 18, URLs and routing are key components of its web framework, used to handle HTTP requests. Understanding them is essential for customizing Odoos behavior, creating new pages, and integrating with external systems.
How to Manage Purchase Order Approval in Odoo 18Celine George
油
In Odoo 18, you can set a minimum amount as a limit, and whenever an order comes above the limit, it requires the approval of the manager. In this slide, we are diving into the crucial aspect of procurement, which is managing purchase order approval.
This slides provide you the information regarding the sexually transmitted diseases as well as about the urinary tract infection. The presentation is based on the syllabus of Bachelor of Pharmacy semester 6 of subject name Pharmacology-III. The data is occupied from the high standard books and along with easy understanding of data.
How to Configure Outgoing and Incoming mail servers in Odoo 18Celine George
油
Odoo 18 features a powerful email management system designed to streamline business communications directly within the platform. By setting up Outgoing Mail Servers, users can effortlessly send emails. Similarly, configuring Incoming Mail Servers enables Odoo to process incoming emails and generate records such as leads or helpdesk tickets.
Precise guide for GNM/RGNM, B.Sc. Nursing/Basic B.Sc. Nursing & M.Sc Nursing students ... Regarding pain and its management. Highly recommended for Third Semester B.Sc Nursing Students .
Also this document discusses pain management through both non-pharmacological and pharmacological approaches. It covers typical areas of referred pain, pain assessment techniques, non-drug therapies like recreation and different approaches for using analgesic medications.
2025 Women Leaders Program - Award WinningSonia McDonald
油
Empower & Lead: Women in Leadership
Dive into our award-winning and dynamic programs designed to boost your confidence and equip you with bold tools and strategies. Unleash your unique leadership potential and lead with flair!
Elevate Your Game with the Women Leaders Program
Step up to the challenge with Sonia McDonalds dynamic leadership program, perfectly blending neuroscience, personal, and professional development. With over three decades of expertise in leadership and HR, Sonia has designed a program that adapts to your busy lifestyle, offering both virtual and in-house options. Explore ten robust modules equipped with an all-encompassing toolkit, infused with cutting-edge neuroscience to enhance your understanding of leadership dynamics. Choose from engaging monthly group coaching or personalized 1:1 sessions with Sonia.
If youre ready for a transformative journey focused on growth, neuroscience-backed courage, leadership, and freedom, this is your call to action. Join us and start leading like never before!
Transform Your Leadership.
Transform Your Life.
Women are underrepresented in key decision-making roles across almost all industries in the Australian workforce, women comprise only:
19.4% of CEOs
32.5% of key management positions
33% of board members
18% of board chairs.
ITS TIME FOR CHANGE. JOIN THE PROGRAM TODAY.
Maximise Your Leadership Skills
Achieve the best results for yourself, your team, and for the business.
Develop & Grow Your Courage
Build courageous habits to live the life you choose.
Enhance Your Career Progression
Step in, stand up, lead and get your seat at the Table.
https://soniamcdonald.com.au/women-leaders-program/
2025 Women Leaders Program - Award WinningSonia McDonald
油
API testing Notes and features, difference.pdf
1. What is API?
API stands for the Application Programming Interface, They are basically a collection of functions and
procedures which allows us to communicate two application or library.
For example, It like a connector as seen in the picture. All data connects to our organization through API.
In one line, API is its an interface between different software programs or service.
2. Simple Examples is,
Suppose you go to a restaurant.
API is the messenger that takes your order(waiter) and tells the system(kitchen) what to do (to prepare food)
and in return gives back the response you asked for (waiter returns with the ordered food).
Source - Quora. https://www.quora.com/What-is-an-API
Type of APIs :-
3. What is API Testing?
When we talk about API Testing,
API testing is testing that APIs and its integration with the services.
It is one of the most challenging type of testing, If we miss the certain cases in API Testing that can cause a
very big problem in production after full integration and it will hard to debug in production environment..
In this definite guide,
We are basically discussing about the REST API Testing.Where we need to test the REST APIs for the
validation, error codes and load testing.
What is REST API?
As REST is an acronym for REpresentational State Transfer, statelessness is key. An API can be REST if it
follows the below constraints.
The REST architectural style describes six constraints. These constraints, put on the architecture, were initially
communicated by Roy Fielding in his doctoral dissertation and defines the basis of RESTful-style.
1. Uniform Interface
2. Stateless
3. Cacheable
4. Client-Server
5. Layered System
6. Code on Demand
Uniform Interface
The uniform interface constraint defines the interface between clients and servers.
In other terms,
First constraint of the REST API states that the Client and server has to communicate and agree to certain
rules based on resources(they should communicate with same resource like json, xml, html , txt) and with
proper encoding like UTF-8 extra.
4. Another point they should communicate with the Self-descriptive Messages e.g Use the same MIME types.
Stateless
APIs in REST are stateless and Client and server doesnt worry about the state of the request or response..
Cacheable
According to the World Wide Web, clients can cache responses. Responses should therefore, implicitly or
explicitly, define themselves as cacheable. Its upto server when they want the cache to expired etc.
Client-Server
Client and Server are two different entity, It means that servers and clients may also be replaced and
developed independently, as long as the interface is not altered.
Layered System.
It means that the between client and server there can be any number of layered systems it does not matter.
Code on Demand
Server can store the Code or logic to themselves and transfer it whenever needed rather client side logic.
If any API fulfill all the constraints then we can it REST API.
5. Difference between REST API vs SOAP API.
We have already discussed REST API , Lets now Learn what is SOAP API.
SOAP (Simple Object Access Protocol) is a messaging protocol that allows programs that run on disparate
operating systems or services like frontend or backend to communicate using Hypertext Transfer Protocol
(HTTP) and its Extensible Markup Language (XML).
SOAP uses WSDL is an XML format for describing network services as a set of endpoints operating on
messages containing either document-oriented or procedure-oriented information.
Enough of background lets come to topic
What to Test in API Testing?
Validate the keys with the Min. and Max range of APIs (e.g maximum and minimum length)
Have a Testcase to do XML,JSON Schema validation.
Keys verification. If we have JSON, XML apis we should verify it's that all the keys are coming.
Verify that how the APIs error codes handled.
Lets understand why API Testing is important
6. Why you should perform API Testing?
Many of the services that we use every day rely on hundreds of different interconnected APIs, if any
one of them fails then the service will not work.
Right now, Internet uses millions of APIs and they should be tested thoroughly.
Developers make mistake and they create buggy APIs..
Validation of APIs is very important which are going live to production.
Above image shows the architecture of an application and notice that API Testing is important part..
Now
Lets learn one more concept HTTP Methods
HTTP - Fundamentals
HTTP is an application layer protocol designed within the framework of the Internet protocol suite.
7. There is Client which perform a request resource which can be HTMLPage, file extra from Server and server
perform the response to the client back using the same protocol known as HTTP.
HTTP is a stateless protocol. In other words, the current request does not know what has been done in the
previous requests.
What is an Cookies?
Cookies are usually small text files, given ID tags that are stored on your computer's browser directory or
program data subfolders.
GET /spec.html HTTP/1.1
Host: www.example.org
Cookie: theme=light; sessionToken=abc123
Record the user's browsing activity.
Which pages were visited in the past.
Contain the name of the domain & Lifetime.
Tool : EditThisCookie - http://bit.ly/1oe1o08
What is Authentication and its types lets understand it...
What is Authentication?
Authentication is a process of presenting your credentials like username, password or another secret key to
the system and the system to validate your credentials or you. In the API terms Authentication is used to
protect the content over web mean only a valid user with valid credentials can access that API endpoint.
These credentials tell the system about who you are. Which enables the system to ensures and confirms a
users identity. Here system can be anything, it can be a computer, phone, bank or any physical office
premises.
Basic authentication - String is encoded with Base64.
curl --header "Authorization: Basic am9objpzZWNyZXQ=" my-website.com
8. Digest Authentication - Authentication is performed by transmitting the password in an ENCRYPTED
form.(With Some Salt etc)
OAuth- Authentication protocol that allows you to approve one application interacting with another on your
behalf without giving away your password.
E.g OAuth 1, 2.
More authentication are discussed here -
https://scrolltest.com/2018/11/22/how-to-handle-authentications-with-postman/
In Client as Browser and Server as DB with the service running in PHP.
We can create an HTTP request from browser by typing a URL.
Just for more information, URL can be broken down into the further chunks like protocol, host , post and query
params. More discussion is out of scope for URL
Lets Understand what all HTTP methods are present
12. HTTP HEAD/TRACE Method Explained -
Now we have a HTTP Methods knowledge lets understand what are Cookie and authentication.
How to Test an API ( API Testing)?
Before that take a look into the example api that can available freely.
https://api.chucknorris.io/jokes/random
Here Keys are
cateroy, icon_url, id, url and value and they have corresponding values as String or number.
API Testing can be done manually or using a Tools. It is always recommend to certain tools.
Lets learn API Testing using our favorite tools..
13. Below is the list of API testing tools, You can learn or use whichever tool you feel is great for you, I encourage
you to start with Postman it's an awesome API Testing tool which provide lots of feature like command line,
CI/CD and monitoring of APIs with testcase support.
API Testing tools
Runscope.com
Postman CI/CD
Katalon using CI/CD
SoapUI CI/CD
Rest Assured CI/CD
API Testing using POSTMAN
What is Postman?
First of all, lets understand what is Postman.
It is an API Testing tool used by developers and Testers to perform API Testing with lots of different features
like Global variables, mock request, Environment and monitoring of APIs.
You can learn more about a postman in my full Video lecture series here. Download and install it.
P.S This article assumes that you have some experience with Postman. If not please go through my previous
tutorials.
Its available in the MacOS, Windows and Linux as Native app.
Download Postman - https://www.getpostman.com