Tuesday 19 September 2023

Swagger API Filtering in ASP.NET Core

Leave a Comment

Swagger is a robust API documentation and testing tool for ASP.NET Core applications. It creates interactive API documentation to help developers understand and work with your APIs. In other circumstances, though, you may want to expose only certain APIs to Swagger documentation while hiding others. This is useful when you have internal or administrative APIs that should not be accessible to outside users. With actual examples, we will look at how to selectively reveal only specified APIs on Swagger in ASP.NET Core. 

Step 1: Begin by creating an ASP.NET Core Web API Project
If you don't already have an ASP.NET Core Web API project, use the following command to create one.

dotnet new webapi -n MyApi

Step 2. Install Swashbuckle.AspNetCore

To enable Swagger documentation in your ASP.NET Core project, you need to install the Swashbuckle.AspNetCore NuGet package. You can do this using the Package Manager Console or by running the following command.

dotnet add package Swashbuckle.AspNetCore

Step 3. Configure Swagger

Next, open the Startup.cs file in your project and add the following code to the ConfigureServices and Configure methods.

// ConfigureServices method
services.AddSwaggerGen(c =>
{
    c.SwaggerDoc("v1", new OpenApiInfo { Title = "My API", Version = "v1" });
});

// Configure method
app.UseSwagger();
app.UseSwaggerUI(c =>
{
    c.SwaggerEndpoint("/swagger/v1/swagger.json", "My API V1");
});

This code configures Swagger with a default documentation endpoint.

Step 4. Show Only Specific APIs on Swagger

To selectively show only specific APIs on Swagger, you can use the [ApiExplorerSettings] attribute on your controller methods. Here's an example.

[ApiExplorerSettings(IgnoreApi = true)] // This API will be hidden from Swagger
[HttpGet("hidden")]
public IActionResult HiddenApi()
{
    return Ok("This API is hidden from Swagger.");
}

[HttpGet("visible")]
public IActionResult VisibleApi()
{
    return Ok("This API is visible on Swagger.");
}

In this example, the HiddenApi method is decorated with [ApiExplorerSettings(IgnoreApi = true)], which tells Swagger to ignore this API during documentation generation. The VisibleApi method, on the other hand, is not decorated, so it will be visible on Swagger.

Step 5. Run Your ASP.NET Core Application

Now that you've configured Swagger and marked specific APIs as hidden or visible, you can run your ASP.NET Core application using the following command:

dotnet run

Your application will start, and you can access Swagger documentation by navigating to https://localhost:5001/swagger (or the respective URL for your project).

Conclusion

In this article, we've learned how to selectively show only specific APIs on Swagger in an ASP.NET Core application. By using the [ApiExplorerSettings] attribute to mark certain APIs as hidden or visible, you can control which endpoints are documented and exposed via Swagger. This can be particularly useful when you want to keep administrative or internal APIs hidden from external users while providing comprehensive documentation for the APIs that should be accessible to everyone.

Best ASP.NET Core 8.0 Hosting Recommendation

One of the most important things when choosing a good ASP.NET Core 8.0 hosting is the feature and reliability. HostForLIFE is the leading provider of Windows hosting and affordable ASP.NET Core, their servers are optimized for PHP web applications. The performance and the uptime of the hosting service are excellent and the features of the web hosting plan are even greater than what many hosting providers ask you to pay for. 

At HostForLIFEASP.NET, customers can also experience fast ASP.NET Core hosting. The company invested a lot of money to ensure the best and fastest performance of the datacenters, servers, network and other facilities. Its datacenters are equipped with the top equipments like cooling system, fire detection, high speed Internet connection, and so on. That is why HostForLIFEASP.NET guarantees 99.9% uptime for ASP.NET Core. And the engineers do regular maintenance and monitoring works to assure its Orchard hosting are security and always up.

0 comments:

Post a Comment