2017-10-07 1 views

答えて

1

これが最善の方法ですが、あなたはAccountControllerでSignInAsyncへの呼び出しを変更する必要があるように見えるかどうかわからない::ログイン

旧: await HttpContext.Authentication.SignInAsync(user.SubjectId, user.Username, props);

新: await HttpContext.Authentication.SignInAsync(user.SubjectId, user.Username, idpName, props);

関連する問題