gpt4 book ai didi

amazon-web-services - 给定 Cognito 用户池 ID,如何获取 Cognito 身份 ID?

转载 作者:行者123 更新时间:2023-12-03 23:08:24 25 4
gpt4 key购买 nike

AWS Amplify's Storage Documentation ,有一节是关于如何获取其他用户的对象...

Storage.get('test.txt', { 
level: 'protected',
identityId: 'xxxxxxx' // the identityId of that user
})

我在哪里可以获得另一个用户的身份标识?

我只能查询用户的 Cognito 用户池 ID。有没有办法将用户池 ID 映射到身份 ID?

最佳答案

您可以使用 Auth.currentUserCredential 方法获取身份 ID

import { Auth } from 'aws-amplify';

await Auth.signIn(username, password);
const credentials = await Auth.currentUserCredentials();
console.log("identityId", credentials.identityId);

关于amazon-web-services - 给定 Cognito 用户池 ID,如何获取 Cognito 身份 ID?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60765982/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com