是否可以在AWS Cognito身份验证后lambda触发器中返回自定义数据?
我尝试在event.response
中设置属性,但是这些属性不会传播回客户端。
例如:
module.exports.post_auth_trigger = (event, context, callback) => {
context.callbackWaitsForEmptyEventLoop = false;
event.response.some_custom_property = 'this is custom';
callback(null, event);
};
使用此代码不会在认证后将some_custom_property
返回给客户端。如何实现?