2

oidc-client.js を使用して、identityserver4 で次の構成を使用しています。サインイン リダイレクトが正常に行われます。ただし、次の「authUser」はその後も常にnullになります。何が間違っているのですか。私は彼らのサンプルアプリケーションに従いました。

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();
    }

});
4

1 に答える 1