About 50 results
Open links in new tab
  1. Tutorial: Create a controller-based web API with ASP.NET Core

    By Tim Deschryver and Rick Anderson This tutorial teaches the basics of building a controller-based web API that uses a database. Another approach to creating APIs in ASP.NET Core is to create …

  2. Create web APIs with ASP.NET Core | Microsoft Learn

    Dec 7, 2025 · ASP.NET Core supports creating web APIs using controllers or using Minimal APIs. Controllers in a web API are classes that derive from ControllerBase. Controllers are activated and …

  3. Create a web API with ASP.NET Core controllers - Training

    Create a RESTful service with ASP.NET Core controllers that supports create, read, update, and delete (CRUD) operations.

  4. ASP.NET Core web API documentation with Swagger / OpenAPI

    Aug 26, 2024 · This tutorial provides a walkthrough of adding Swagger to generate documentation and help pages for a web API app.

  5. Tutorial: Create a Minimal API with ASP.NET Core

    Dec 16, 2025 · They're ideal for microservices and apps that want to include only the minimum files, features, and dependencies in ASP.NET Core. This tutorial teaches the basics of building a Minimal …

  6. ASP.NET documentation | Microsoft Learn

    Learn to use ASP.NET Core to create web apps and services that are fast, secure, cross-platform, and cloud-based. Browse tutorials, sample code, fundamentals, API reference and more.

  7. 教程:使用 ASP.NET Core 生成基于控制器的 Web API | Microsoft Learn

    Create a web API with ASP.NET Core controllers - Training Create a RESTful service with ASP.NET Core controllers that supports create, read, update, and delete (CRUD) operations.

  8. Configure JWT bearer authentication in ASP.NET Core

    Dec 18, 2025 · When using JWT access tokens for API authorization, the API grants or denies access based on the provided token. If the request is not authorized, a 401 or 403 response is returned.

  9. ASP.NET Core を使って Web API を作成する | Microsoft Learn

    この記事では、コントローラーを使って Web API 要求を処理する方法について説明します。 コントローラーを使用せずに Web API を作成する方法については、「 チュートリアル: ASP.NET Core を …

  10. How to use Identity to secure a Web API backend for SPAs

    Dec 7, 2025 · ASP.NET Core Identity provides APIs that handle authentication, authorization, and identity management. The APIs make it possible to secure endpoints of a Web API backend with …