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...Discuss·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...Discuss·93 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...Discuss·10 likesOpenApi
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...DiscussOpenApi
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...Discuss·142 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...Discuss·29 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... Faithful Adeda and 1 other are discussing this2 people are discussing thisDiscuss·8 likes·157 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...Discussswagger
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. ...Discuss·57 readsSpringboot
Vedant Bothikarvedantbothikar.hashnode.dev·Sep 30, 2023API First Development - Part 2 - Open Api SpecificationIn the first part of this blog series, I included the below code. In this part, we will be discussing how to write one such file by explaining what each keyword signifies. openapi: 3.0.0 info: version: 0.0.1 title: Library Service description:...Discuss·29 readsswagger