Pranav Bawgikarpranavbawg.hashnode.dev·Dec 15, 2024Why you should care about REST[22] What is a REST API? REST stands for Representational State Transfer. It is a lighter weight alternative to SOAP and WSDL XML-based API protocols. Developing a REST API enables us to create a foundation upon which we can build all other applicati...REST API
Treblletrebllemakers.hashnode.dev·Dec 13, 2024Introduction to REST API TestingIf you've built a REST API and deployed it to production, you might think the job is done, but... does it have any testing? How do you know it's working properly right now? How do you know it'll keep working next time you push a change? What is API t...APIs
Milan Jovanovićmilanjovanovic.hashnode.dev·Nov 23, 2024Building Async APIs in ASP.NET Core - The Right WayMost APIs follow a simple pattern. The client sends a request. The server does some work. The server sends back a response. This works well for fast operations like fetching data or simple updates. But what about operations that take longer? Think ab...130 readsAPIs
gayatri kumargeekee.hashnode.dev·Nov 22, 2024Structuring APIs the RESTful Way: Building a Solid FrameworkIn the previous part, we built a basic API using Node.js and Express. Now, it’s time to take things further by structuring our API according to REST principles. REST (Representational State Transfer) is a design approach that makes APIs more reliable...10 likesWeb Developmentjs
Ayusharpcoderreacttonext.hashnode.dev·Nov 22, 2024Understanding REST vs. GraphQL: Which One Should You Choose?The debate between REST and GraphQL has been a significant topic in web development for years. Both offer ways to build APIs, but they cater to different needs. In this post, we’ll compare REST and GraphQL in terms of their features, benefits, and us...1 likewebdev
gayatri kumargeekee.hashnode.dev·Nov 21, 2024APIs Uncovered: The Gateway to Data and FunctionalityAPIs – The Bridge Between Systems Imagine you’re managing a space station and need data from various sources—weather on Mars, space mission statuses, and more. APIs (Application Programming Interfaces) act as digital translators that allow your syste...10 likesWeb Developmentjs
TARPARA KAUSHALkdtarpara.hashnode.dev·Nov 21, 2024Types of API1. SOAP (Simple Object Access Protocol) What it is: SOAP is a protocol for exchanging structured information in the form of XML. It was designed for high-level security and reliability. How it works: SOAP uses XML to send messages and relies on spe...APIs
Treblletrebllemakers.hashnode.dev·Nov 18, 2024Creating and Managing Documentation for .NET REST APIsOverview Good documentation is the backbone of any robust API. It ensures that developers can effectively use and maintain APIs, reducing onboarding time and minimizing support requests. For .NET REST APIs, well-crafted documentation is crucial in en...89 readsAPIs
Parvanaapi-design.hashnode.dev·Nov 11, 2024Optimizing Your REST Assured Tests: Setting Default Host and Port, GET Requests, and AssertionsIntroduction REST Assured is a powerful Java library for testing RESTful web services. It simplifies API testing by providing a comprehensive toolset to validate responses efficiently. In this blog, we'll explore essential concepts like setting up de...api
maggiecoco-in.hashnode.dev·Nov 11, 2024What Is JWT Bearer for REST APIs and How to Debug It With Code & ToolsUnderstanding JWT Bearer for REST APls: A Guide to Debugging with Code& Tools In today's web development landscape, securing REST APIs is crucial for developers and organizations. One effective method is using JSON Web Tokens (JWT), specifically JWT ...REST