0
応じたアクセストークンは、以下の特許請求の範囲が含まれます。Identity Server 4に静的発行者を設定できますか?
"alg": "RS256",
"kid": "143e829c2b57489969753ba4f8205979df0da988c640cffa5f1f4eda1b6e6aa4",
"typ": "JWT"
"nbf": 1481451903,
"exp": 1481455503,
"iss": "https://localhost:44350",
"aud": [ "https://localhost:44350/resources", "customAPI" ],
"client_id": "oauthClient",
"scope": [ "customAPI.read" ]
をそしてここで私は、ユーザーが異なる上で認証できるようにするにはどうすればよい
app.UseIdentityServerAuthentication(
new IdentityServerAuthenticationOptions
{
Authority = "https://localhost:44350/",
ApiName = "customAPI",
ApiSecret = "secret",
AllowedScopes = {"customAPI.full_access", "customAPI.read_only" },
RequireHttpsMetadata = false
});
を認証するためにIdentityServerを使用するために自分のアプリケーションを伝えるための設定ですIdentityServerのエイリアスをhttps://localhost:44350/としてください。例:http://192.168.1.20:44350/?
現在のところ、後者のドメインから取得されるトークンは、前のドメインに権限設定を持つクライアントで無効と見なされます。
ありがとうございます。私が必要とするもの – Elveryx