How to get all C# microservices together in same Swagger page

280 Views Asked by At

I'm developing a platform where I have 3 microservices and an API Gateway done in Ocelot. The problem is that I want to get all microservices in a Swagger page like : enter image description here

I don't want implement Swagger endpoints: enter image description here

Thanks in advance. I'm stuck in these issue by several days.

1

There are 1 best solutions below

2
On BEST ANSWER

Unfortunately, there is no 'built-in' functionality in .NET that allows you to merge OpenAPI documents. In this case, you need to use an external library that allows you to merge OpenAPI documents or write such functionality yourself. When using external libraries, you must consider that they may not meet your requirements regarding, for example, filtering endpoints or handling conflicts (e.g., a model with the same name appears in several documents you are merging).

.NET, on the other hand, provides a very simple and user-friendly API that allows for very convenient work with OpenAPI documents - everything you might need can be found in the NuGet packages - Microsoft.OpenApi. These packages cover practically everything you might need, from reading documents in various formats to manipulating structures.

Essentially, the most basic merging process will involve combining several lists from the OpenAPI document:

  • Paths
  • Components (in most simple case it'll be just a Components.Schemas)

Applying your own logic will allow you to manage the 'output' document in any way you want - relatively simple. I recently tried to solve the problem of merging OpenAPI documents, but unfortunately, most of the projects either didn't meet my requirements or support for them had been abandoned years ago.