点击link确认授权放大
Click the link confirmation auth amplify
如何在 AWS Cognito 中使用“单击确认 link”身份验证而不是确认码身份验证?
确认用户电子邮件目前如下所示:
您可以在 General Settings > Message Customizations > Do you want to customize your email verification messages? > Verification type
下的 Cognito 用户池设置中进行设置。选择Link
.
或者如果你使用CDK,你可以在代码中设置。
const userPool = new UserPool(this, "userPool", {
userVerification: {
emailStyle: VerificationEmailStyle.LINK,
}
...
如何在 AWS Cognito 中使用“单击确认 link”身份验证而不是确认码身份验证?
确认用户电子邮件目前如下所示:
您可以在 General Settings > Message Customizations > Do you want to customize your email verification messages? > Verification type
下的 Cognito 用户池设置中进行设置。选择Link
.
或者如果你使用CDK,你可以在代码中设置。
const userPool = new UserPool(this, "userPool", {
userVerification: {
emailStyle: VerificationEmailStyle.LINK,
}
...