0
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

ASP.NET Core 3.1でAzure Active Directory B2Cを最速で使えるようにする

Posted at

結論

Azure Active Directory B2Cを作成し、 appsettings.jsonに次のように書く。

{
  "AzureAdB2C": {
    "Instance": "https://login.microsoftonline.com/tfp",
    "ClientId": "12ab1845-7adb-4d66-a094-eca217a58f31",
    "CallbackPath": "/signin-oidc",
    "Domain": "aspdotnetcoretest0000.onmicrosoft.com",
    "SignUpSignInPolicyId": "B2C_1_SUSI",
    "ResetPasswordPolicyId": "B2C_1_RESET",
    "EditProfilePolicyId": ""
  },
  "Logging": {
    "LogLevel": {
      "Default": "Information",
      "Microsoft": "Warning",
      "Microsoft.Hosting.Lifetime": "Information"
    }
  },
  "AllowedHosts": "*"
}

設定内容と、appsettings.json との関係はこんな感じ。
image.png

注意点

ASP.NET Core 3.1のテンプレートを使用して、認証情報を設定してしまうと、当然Gitにもコミットされた状態でプロジェクトが作成されます。ここでは適当な値を入れておいて、.gitignoreしてから設定値を入れるのが無難だと思います。

image.png

終わりに

これだけの設定で認証できちゃうとか簡単!
本当にありがたい!

ちなみに、説明で使用したディレクトリは完全に抹消しましたけど、セキュリティとか問題があればコメントください。

ディレクトリの削除方法は、こちらが分かりやすいです。

ここまでご覧いただきありがとうございます。

0
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?