我正在使用 Amazon 的 Cognito 用户池来启动 SAML SSO 身份验证。我使用aws-amplify
的是一个 JavaScript 库,用于使用云服务和前端的 ReactJS 进行应用程序开发。currentSession()
尝试使用该功能似乎存在一些问题。Auth.siginIn()
使用包的Auth Module的功能时,我的会话似乎没有保存会话。我已经使用我在用户池中设置的当前测试用户进行了测试并成功登录。我想使用的原因Auth.currentSession()
功能是验证我的应用程序中每个视图的会话。下面你可以看到,在用户验证登录后,我将它们发送到我的仪表板视图,然后在组件安装后尝试验证会话,但它返回一个错误,没有找到用户。下面是我使用的代码。我查看了 aws-amplify 在其网站上的文档,但似乎无法确定问题所在。
注意:Redux 用于存储来自 setUserData 和 setAuthToken 的响应(登录后的会话响应)
登录.js
handleSubmit = (event) => {
event.preventDefault();
Auth.signIn(this.state.sso, this.state.password)
.then((res) => {
this.props.authUser(true)
this.props.setUserData(res.username)
this.props.setAuthToken(res.Session)
})
.then(() => {
this.props.history.push("/Dashboard")
})
//catches err
.catch((e) => {
console.log(e);
alert(e.message)
this.props.authUser(false)
})
}
用户登录后,应将用户推送到仪表板。一旦componentDidMount()
在组件生命周期中被调用,那么我想检查当前会话以查看是否仍在会话中。
仪表板.js
componentDidMount(){
debugger;
console.log(Auth);
Auth.currentSession().then((res) => {
console.log(res);
}).catch((e) => {
alert(e)
})
this.props.toggleError(false);
this.props.toggleNotify()
}