マイクロソフト系技術情報 Wiki」は、「Open棟梁Project」,「OSSコンソーシアム .NET開発基盤部会」によって運営されています。

目次

概要

Finalを参照して記述。

詳細

OPディスカバリ

HTTPSで以下を送信する。

パラメタ

リクエスト・レスポンスの例

OP構成情報

issuerに「/.well-known/openid-configuration」を連結したURLを使用。

要求

GET /.well-known/openid-configuration HTTP/1.1
Host: example.com

応答

{
 "issuer":
   "https://server.example.com",
 "authorization_endpoint":
   "https://server.example.com/authorize",
 "token_endpoint":
   "https://server.example.com/token",
 "token_endpoint_auth_methods_supported":
   ["client_secret_basic", "private_key_jwt"],
 "token_endpoint_auth_signing_alg_values_supported":
   ["RS256", "ES256"],
 "userinfo_endpoint":
   "https://server.example.com/userinfo",
 "jwks_uri":
   "https://server.example.com/jwks.json",
 "registration_endpoint":
   "https://server.example.com/register",
 "scopes_supported":
   ["openid", "profile", "email", "address",
    "phone", "offline_access"],
 "response_types_supported":
   ["code", "code token"],
 "service_documentation":
   "http://server.example.com/service_documentation.html",
 "ui_locales_supported":
   ["en-US", "en-GB", "en-CA", "fr-FR", "fr-CA"]
}

パラメタ

基本要素

エンドポイント

OAuth 2.0

Registration

Session Management

署名・暗号化

JWK

Requestオブジェクト関連

アルゴリズム

JWSJWEのアルゴリズム(JWA)のリストを含むJSON配列

各種オプション

OAuth 2.0 / OIDC

OIDC

参考

Dynamic Client Registration


Tags: :IT国際標準, :認証基盤, :クレームベース認証, :OAuth


トップ   新規 一覧 単語検索 最終更新   ヘルプ   最終更新のRSS