Steve Josekstevejose.hashnode.dev·Feb 2, 2025Swagger BundlingSwagger Bundling Hello everyone, I would like you to introduce Swagger bundling which I discovered recently and implemented while working on our API documentation. What is Swagger Bundling? Swagger Bundling is a process used for managing large comple...53 readsOpenApi
Oussama Chahidiwevdevblog.hashnode.dev·Nov 1, 2024Spring Boot Swagger Integration GuideSwagger is an essential tool for building and documenting APIs, providing a clear structure and interactive interface that simplifies development and integration. When paired with Spring Boot, it enables the rapid creation of RESTful APIs with seamle...1 likeSpringboot
Tina Hollyblog.tinaciousdesign.com·Oct 14, 2024Open API (Part 3): Generating an OpenAPI spec file from codeOverview This is the 3rd article in a series of posts about working with Open API to create generated API clients and documentation websites. In the 1st post we went over what we can do with Open API spec files, e.g. generate API clients and documen...140 readsOpenApi
Tina Hollyblog.tinaciousdesign.com·Oct 7, 2024Open API (Part 2): Handcrafted, bespoke, artisanal Open API specs: API contract-firstOverview This article is the 2nd in a series of blog posts that discuss using Open API to help with API documentation and API client code generation. In the previous article, we went over how we can generate documentation and API clients using existi...10 likes·41 readsOpenApi
Tina Hollyblog.tinaciousdesign.com·Sep 30, 2024Open API (Part 1): Generating API clients and documentation from an Open API specOverview This article starts a series of Open API-related blog posts. OpenAPI, previously known as Swagger (a name still in use today for many of its tools), is a suite of tools that generate documentation and networking clients for various programmi...107 readsOpenApi
Shohanur Rahmanshohanur.hashnode.dev·Aug 8, 2024Configuring Bearer Authentication with Keycloak for Swagger UIIn this blog post, we'll walk through configuring Swagger UI to use Bearer Authentication with Keycloak, focusing on both Authorization Code and Client Credentials flows. This guide will help you secure your API documentation and ensure that only aut...474 readsswagger-ui
Arnab guptaarnabgupta.hashnode.dev·Jul 20, 2024How to Integrate Swagger in Node Express for API DocumentationAs an API developer, I always aim to provide good documentation for the code I write. What better way to do that than by using Swagger? So today, I will write a guide on setting up Swagger with your Node Express project. Start New Project npm init -y...53 readsswagger-ui
mamuro oyiboluawhoremamuro.hashnode.dev·Jun 2, 2024How To Implement Swagger In Django Rest Framework (drf)INTRODUCTION: Swagger is an open-source framework that helps developers design, build, document, and consume RESTFUL web services. It is used to document APIs, which helps the developers to understand the basic behavior of every endpoint created. It...8 likes·174 readsswaggerindrf
Venkata Thanoojthanooj.hashnode.dev·Mar 1, 2024Getting Started with Swagger for Standard API DocumentationSwagger, now known as the OpenAPI Specification, is a powerful framework for API design, documentation, and consumption. It provides a standardized way to describe RESTful APIs, enabling developers and consumers to understand the functionalities of a...swagger
Sahil Rajputsahilrajput.hashnode.dev·Feb 17, 2024Documenting a Spring REST API Using OpenAPI and Swagger-UIHello World !! In my previous blogs, we have seen how to develop REST CRUD APIs using Spring Boot and MongoDB. Spring Boot + MongoDB : Pagination APIs - Click Link In this blog, we have created some APIs to get data from database using pagination. ...65 readsSpringboot