2
oidc-client.jsを使用してidentityserver4で次の設定を使用しています。正常にリダイレクトされます。しかし、それ以降も「authUser」は常にnullになります。私は何が間違っているのですか。私はそのサンプルアプリケーションに従った。サインインのリダイレクト成功後にIdentity Serverが返さない
const config = {
authority: "http://localhost:5000",
client_id: "js",
redirect_uri: "http://localhost:5003",
response_type: "id_token token",
scope: "openid profile api1",
post_logout_redirect_uri: "http://localhost:5003",
};
const mgr = new Oidc.UserManager(config);
mgr.getUser().then(function (authUser) {
if (authUser) {
//Home Page Coding will go here.
}
else {
mgr.signinRedirect();
}
});
ここでは、クライアントがトークンとその他の情報をサーバーから取得する場所を確認してください –