fix(identity-service): 暂时恢复三要素身份验证

二要素 API (Id2MetaStandardVerify) 返回 440 无权限调用错误
暂时恢复使用三要素验证,保留二要素代码待开通权限后使用

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
hailin 2025-12-25 10:12:20 -08:00
parent 4ec4df14b5
commit 68a071cfaa
1 changed files with 2 additions and 2 deletions

View File

@ -95,8 +95,8 @@ export class AliyunKycProvider {
phoneNumber: string,
requestId: string,
): Promise<IdCardVerificationResult> {
// 默认使用二要素验证(姓名+身份证号
return this.verifyIdCardTwoFactor(realName, idCardNumber, requestId);
// 暂时使用三要素验证(二要素需要单独开通权限
return this.verifyIdCardThreeFactor(realName, idCardNumber, phoneNumber, requestId);
}
/**