GitHubスライド | slidict.io

メッセージを読み込み中

TodoapplicationwithASP.NETCore

  • ユーザー:
  • 最終更新: 2025/06/27
  • 読み取り時間: 02:52

Todo application with ASP.NET Core

This is a Todo application that features:

  • Todo.Web - An ASP.NET Core hosted Blazor WASM front end application

  • Todo.Api - An ASP.NET Core REST API backend using minimal APIs

It showcases:

  • Blazor WebAssembly

  • Minimal APIs

  • Using EntityFramework and SQLite for data access

  • OpenAPI

  • User management with ASP.NET Core Identity

  • Cookie authentication

  • Bearer authentication

  • Proxying requests from the front end application server using YARP’s IHttpForwarder

  • Rate Limiting

  • Writing integration tests for your REST API

Prerequisites

Database

The application uses SQLite and entity framework. .NET Aspire is used to bootstrap all dependencies.

Running the application

To run the application, run the TodoApp.AppHost project. This uses .NET Aspire to run both the Todo.Web/Server and Todo.Api.

Optional

Using the API standalone

The Todo REST API can run standalone as well. You can run the Todo.Api project and make requests to various endpoints using the Swagger UI (or a client of your choice):

Before executing any requests, you need to create a user and get an auth token.

  1. To create a new user, run the application and POST a JSON payload to /users/register endpoint:

     {
       "email": "myuser@contoso.com",
       "password": ""
     }
  2. To get a token for the above user, hit the /users/login endpoint with the above user email and password. The response will look like this:

     {
       "tokenType": "Bearer",
       "accessToken": "string",
       "expiresIn": ,
       "refreshToken": "string"
     }
  3. You should be able to use the accessToken to make authenticated requests to the todo endpoints.

Social authentication

In addition to username and password, social authentication providers can be configured to work with this todo application. By default it supports Github, Google, and Microsoft accounts.

Instructions for setting up each of these providers can be found at:

Once you obtain the client id and client secret, the configuration for these providers must be added with the following schema:

{
    "Authentication": {
        "Schemes": {
            "": {
                "ClientId": "xxx",
                "ClientSecret": "xxxx"
            }
        }
    }
}

Or using environment variables:

Authentication__Schemes____ClientId=xxx
Authentication__Schemes____ClientSecret=xxx

Or using user secrets:

dotnet user-secrets set Authentication:Schemes::ClientId xxx
dotnet user-secrets set Authentication:Schemes::ClientSecret xxx

Other providers can be found here. These must be added to AuthenticationExtensions as well.

NOTE: Don’t store client secrets in configuration!

Auth0

This sample has Auth0 configured as an OIDC server. It can be configured with the following schema:

{
  "Authentication": {
    "Schemes": {
      "Auth0": {
        "Audience": "",
        "Domain": "",
        "ClientId": "",
        "ClientSecret": ""
      }
    }
  }
}

Learn more about the Auth0 .NET SDK here.

OpenTelemetry

This app uses OpenTelemetry to collect logs, metrics and spans. You can see this using the Aspire Dashboard.

著者:
David Fowler

Distinguished Engineer 🧐 at Microsoft on the .NET team, Creator of SignalR

Access

0 回

シンプルでエレガントなプレゼン。slidict.io - プロフェッショナルなスライド作成を実現

プレゼンを変革する。ログインしてslidict.ioを体験しよう!