AWS Cognito:使用重新发送代码的自定义挑战
创始人
2024-11-15 08:31:36
0

要在AWS Cognito中实现自定义的重新发送代码挑战,您可以按照以下步骤操作:

  1. 创建一个AWS Cognito用户池。
import boto3

client = boto3.client('cognito-idp')

response = client.create_user_pool(
    PoolName='custom-pool',
    AutoVerifiedAttributes=['email'],
    Policies={
        'PasswordPolicy': {
            'MinimumLength': 8,
            'RequireLowercase': True,
            'RequireUppercase': True,
            'RequireNumbers': True,
            'RequireSymbols': True,
            'TemporaryPasswordValidityDays': 7
        }
    },
    EmailVerificationSubject='Verify your email for our app',
    EmailVerificationMessage='Please click the link below to verify your email address: {####}',
    SmsVerificationMessage='Your verification code for our app is {####}.',
    SmsAuthenticationMessage='Your authentication code for our app is {####}.',
    UserPoolTags={
        'Key': 'Value'
    },
    AdminCreateUserConfig={
        'AllowAdminCreateUserOnly': False,
        'UnusedAccountValidityDays': 30,
        'InviteMessageTemplate': {
            'SMSMessage': 'Your username is {username} and temporary password is {####}.',
            'EmailMessage': 'Your username is {username} and temporary password is {####}.',
            'EmailSubject': 'Your temporary password'
        },
        'UnusedAccountValidityDays': 30,
        'UnusedAccountValidityDays': 30
    }
)

user_pool_id = response['UserPool']['Id']
  1. 创建一个自定义的挑战触发器。
import json

def trigger_custom_challenge(event, context):
    response = {
        'challengeName': 'CUSTOM_CHALLENGE',
        'issueTokens': False,
        'failAuthentication': False
    }
    
    if event['request']['session']['challengeName'] == 'CUSTOM_CHALLENGE' and event['request']['session']['challengeResult'] == 'FAIL':
        response['failAuthentication'] = True
        
    return response
  1. 将自定义挑战触发器绑定到用户池中。
response = client.create_user_pool_client(
    UserPoolId=user_pool_id,
    ClientName='custom-client',
    GenerateSecret=False,
    RefreshTokenValidity=30,
    ReadAttributes=['email'],
    WriteAttributes=['email'],
    ExplicitAuthFlows=['ADMIN_NO_SRP_AUTH'],
    SupportedIdentityProviders=['COGNITO'],
    CallbackURLs=['https://example.com'],
    LogoutURLs=['https://example.com'],
    PreventUserExistenceErrors='ENABLED',
    AllowedOAuthFlows=['implicit'],
    AllowedOAuthScopes=['openid'],
    AllowedOAuthFlowsUserPoolClient=True,
    AnalyticsConfiguration={
        'ApplicationId': 'your-application-id',
        'RoleArn': 'your-role-arn',
        'ExternalId': 'your-external-id',
        'UserDataShared': True
    },
    PreventUserExistenceErrors='ENABLED',
    SupportedIdentityProviders=['COGNITO'],
    CallbackURLs=['https://example.com'],
    LogoutURLs=['https://example.com'],
    AllowedOAuthFlows=['implicit'],
    AllowedOAuthScopes=['openid'],
    AllowedOAuthFlowsUserPoolClient=True
)

user_pool_client_id = response['UserPoolClient']['ClientId']

response = client.create_user_pool_domain(
    Domain='custom-domain',
    UserPoolId=user_pool_id
)
  1. 更新用户池配置以启用自定义挑战模式。
response = client.update_user_pool(
    UserPoolId=user_pool_id,
    LambdaConfig={
        'CustomMessage': 'arn:aws:lambda:us-west-2:123456789012:function:custom-message',
        'PreSignUp': 'arn:aws:lambda:us-west-2:123456789012:function:pre-signup',
        'PostConfirmation': 'arn:aws:lambda:us-west-2:123456789012:function:post-confirmation',
        'PreAuthentication': 'arn:aws:lambda:us-west-2:123456789012:function:pre-authentication',
        'PostAuthentication': 'arn:aws:lambda:us-west-2:123456789012:function:post-authentication',
        'DefineAuthChallenge': 'arn:aws:lambda:us-west-2:123456789012:function:define-auth-challenge',
        'CreateAuthChallenge': 'arn:aws:lambda:us-west-2:123456789012:function:create-auth-challenge',
        'VerifyAuthChallengeResponse': 'arn:aws:lambda:us-west-

相关内容

热门资讯

前端-session、jwt 目录:   (1)session (2&#x...
linux入门---制作进度条 了解缓冲区 我们首先来看看下面的操作: 我们首先创建了一个文件并在这个文件里面添加了...
关于测试,我发现了哪些新大陆 关于测试 平常也只是听说过一些关于测试的术语,但并没有使用过测试工具。偶然看到编程老师...
前缀和与对数器与二分法 1. 前缀和 假设有一个数组,我们想大量频繁的去访问L到R这个区间的和,...
nodejs:本地安装nvm实... 一、背景-使用不同版本node的原因 vue3+ts、nuxt3版本,node...
JAVA集合知识整理 Java集合知识整理 HashMap相关 HashMap的底层数据结构:jdk1.8之...
无刷直流电机介绍及单片机控制实... 无刷直流电机介绍及单片机控制实例前言基本概念优势与劣势使用寿命基本结构使用单片机控制实例电子调速器&...
fwdiary(2) dp2 1.传纸条  AcWing 275. 传纸条 - AcWing 走两条路,走一条最大的...
常用的DOS命令 常用的DOS命令 DOS(Disk Operating System,磁...
<C++> 类和对象(下) 1.const成员函数将const修饰的“成员函数”称之为const成员函数,cons...