5

AWS Amplify 身份验证模块具有一些用于登录、注册、忘记密码等操作的方法。甚至可以让用户通过以下方式更新他/她的信息:

import { Auth } from 'aws-amplify'

// Auth API Sign-in sample
Auth.signIn(username, password)
    .then(user => console.log(user))
    .catch(err => console.log(err))

// Auth API Change info sample
let result = await Auth.updateUserAttributes(user, {
    'email': 'me@anotherdomain.com',
    'family_name': 'Lastname'
})

但是,无论如何我都看不到禁用(当心,不要删除)帐户。

那么,用户可以注册 Web 应用程序,但不能使用 AWS Amplify 将其停用?如果没有,还有其他方法可以通过 Javascript 代码禁用 AWS Cognito 用户池用户吗?

4

1 回答 1

3

我浏览了 Cognito 用户池 API 的 AWS 文档,发现了一些方法可以让具有管理员权限的函数禁用(而不是删除)Cognito 用户池帐户!

这是 AWS 网站上文档的链接: https ://docs.aws.amazon.com/cognito-user-identity-pools/latest/APIReference/API_AdminDisableUser.html

还有一种方法可以重新启用用户: https ://docs.aws.amazon.com/cognito-user-identity-pools/latest/APIReference/API_AdminEnableUser.html

可以在此处找到此 javascript 实现: https ://docs.aws.amazon.com/AWSJavaScriptSDK/latest/AWS/CognitoIdentityServiceProvider.html#adminDisableUser-property

使用适用于 JS 的 AWS 开发工具包的代码将是这样的:

var cognitoidentityserviceprovider = new AWS.CognitoIdentityServiceProvider({apiVersion: '2016-04-18'});

var params = {
  UserPoolId: 'STRING_VALUE', /* required */
  Username: 'STRING_VALUE' /* required */
};
cognitoidentityserviceprovider.adminDisableUser(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});
于 2018-08-01T06:16:12.940 回答