AWS SES 电子邮件验证 RequestId 状态

AWS SES Email Verification RequestId status

使用 AWS SES 电子邮件验证,在验证电子邮件后,我从响应中得到 RequestId。我正在尝试找到一种获取更新表单的方法,但是 RequestId 我找不到可以给我更新此 RequestId 状态的端点或方法。

{
  ResponseMetadata: { RequestId: '1234567890' }
}

这是我用于电子邮件验证的文档https://docs.aws.amazon.com/ses/latest/DeveloperGuide/verify-email-addresses-procedure.html

您无法使用从 SES 电子邮件验证响应收到的 RequestId 来跟踪电子邮件验证的状态。粘贴来自 SES 电子邮件验证的示例响应。

{'ResponseMetadata': {'RetryAttempts': 0, 'HTTPStatusCode': 200, 'RequestId': 'abcd-xyz-123', 'HTTPHeaders': {'date': 'Wed, 26 May 2021 04:44:03 GMT', 'x-amzn-requestid': '98768888-1111-qwaq-2222', 'content-length': '248', 'content-type': 'text/xml', 'connection': 'keep-alive'}}}

要获取邮箱验证的状态,您可以尝试list_verified_email_addresses操作。它列出了所有经过验证的电子邮件地址。检查您所需的电子邮件地址是否列在 VerifiedEmailAddresses 中。如果不存在,则尚未验证。

import boto3
from botocore.config import Config
my_config = Config(region_name = 'us-west-2')
ses = boto3.client('ses', config=my_config)
response = ses.list_verified_email_addresses()
print(response)

回复:

{'ResponseMetadata': {'RetryAttempts': 0, 'HTTPStatusCode': 200, 'RequestId': 'xxxxx', 'HTTPHeaders': {'date': 'Wed, 26 May 2021 05:25:00 GMT', 'x-amzn-requestid': 'xxxxxx', 'content-length': '412', 'content-type': 'text/xml', 'connection': 'keep-alive'}}, u'VerifiedEmailAddresses': ['example@gmail.com']}