在 post-authentication lambda 触发器中获取 AWS cognito 认证用户

Getting AWS cognito authenticated user in post-authentication lambda trigger

我使用带有 Cognito 后端的 Amplify 来验证我的用户,本质上是作为 LDAP 实现。这一切都已配置并且工作正常。用户在用户池中设置,并正确验证。 (注意:我使用的是默认的 Amplify 控件,所以它按预期工作)。

但是,现在我希望能够提取经过身份验证的用户及其所有数据(包括用户属性),以便我可以更新用户。作为第一步,我尝试将经过身份验证的用户登录到控制台。最后,我将使用此挂钩通过从数据库中提取一些数据进行更新来更新用户属性。

这是我尝试使用的代码片段

exports.handler = async (event, context, callback) => {

    const Amplify = require('@aws-amplify/core')
    const Auth = require('@aws-amplify/auth')

    console.log("Amplify object: %o", Amplify)
    console.log("Auth object: %o", Auth)

    Amplify.configure({
        Auth: {
                identityPoolId: 'XXXX',
                region: event.region,
                userPoolId: event.userPoolId
        }
    });
    
    console.log("about to get current user");
    Auth.currentAuthenticatedUser().then(user => console.log(user));
    console.log("got current user and logged");
}

这里有几个输出片段...

INFO    Amplify object: {
  [__esModule]: true,
  Amplify: [Function: Amplify] {
    [length]: 0,
    [name]: 'Amplify',
    [prototype]: Amplify { [constructor]: [Circular] },
    register: [Function] {
      [length]: 1,
      [name]: '',
      [prototype]: { [constructor]: [Circular] }
    },
    configure: [Function] {
      [length]: 1,
      [name]: '',
      [prototype]: { [constructor]: [Circular] }
    },
    addPluggable: [Function] {
      [length]: 1,
      [name]: '',
      [prototype]: { [constructor]: [Circular] }
    },
    _components: [

INFO    Auth object: {
  [__esModule]: true,
  Auth: AuthClass {
    userPool: null,
    user: null,
    oAuthFlowInProgress: false,
    currentUserCredentials: [Function: bound ] { [length]: 0, [name]: 'bound ' },

我收到的错误是:

ERROR   Invoke Error    
{
    "errorType": "TypeError",
    "errorMessage": "Amplify.configure is not a function",
    "stack": [
        "TypeError: Amplify.configure is not a function",
        "    at Runtime.exports.handler (/var/task/index.js:171:13)",
        "    at Runtime.handleOnce (/var/runtime/Runtime.js:66:25)"
    ]
}

根据 this issue on github Amplify 不能在 Node 中使用,因为它是一个 front-end 库。

这个问题的答案是我需要在 package.json 中使用 aws 库。我已经包含了它,但它不可用。呸!