© 2023 Hashnode
#rest
API, or Application Programming Interface, is a set of rules and protocols that allow two computers to communicate with each other. The most common way to use API is through the client-server architecture, where a client (such as a web or m…
REST, or Representational State Transfer, is an architectural style for building web services. It is a set of guidelines for creating web services that are easy to understand, use, and scale. A Web S…
What inspired you to pursue a career in web development? I was inspired to pursue a career in web development because I had an interest in digital technologies, and I wanted to create experiences that…
About GraphQL What is GraphQL 🤔 GraphQL is a query language for APIs that provides a completely understandable description of the data and gives the client exactly the data they want and nothing more…
Introduction Welcome to the 25th day of our code blog repeat series on backend mastery. Today, we will be discussing the topic of REST principles and creating a simple HTTP server. We will begin by ex…
What is REST? The REST stands for REpresentational State Transfer ➢ State means data ➢ REpresentational means formats (such as XML, JSON, YAML, HTML, etc) ➢ Transfer means carrying data between consum…
No doubt GraphQL has been around for quite sometime, developed since 2012 by Facebook before being moved to GraphQL Foundation, hosted by the non-profit Linux Foundation to be open-source. Since its p…
REST API is a powerful way to run tests. REST means Representational State Transfer. But it's not always enough. You can not find some pitfalls by just being alone with the Rest API. Here only an end-…
This article is about my personal inconveniences with conventional REST API approaches, and my preferred ways of dealing with it. Path Parameters vs Query Parameters Path parameters: # path parameters…
What is API Application Programming Interface (API) is a software interface that allows two applications to interact with each other without any user intervention. API is a collection of software fun…