doum
2 天以前 2f3221b7c90d5663fdb312653a2d188bc4628370
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
export declare const apiName = "internal.auth.identifyByFace";
/**
 * 通过人脸核身 请求参数定义
 * @apiName internal.auth.identifyByFace
 */
export interface IInternalAuthIdentifyByFaceParams {
    /** 手机号 例子"+86-xxxxxx" */
    mobile: string;
    /** 临时码,作为二次核身因子时必填 */
    tempCode?: string;
    /** "login | findPwd" , 目前支持登录与召回密码两种场景使用 */
    action: string;
}
/**
 * 通过人脸核身 返回结果定义
 * @apiName internal.auth.identifyByFace
 */
export interface IInternalAuthIdentifyByFaceResult {
    /** "0|2", 0标识完成身份验证,2标识需要使用其他因子再次核身 */
    status: string;
    /** 需要再次核身时必须返回,再次核身时使用 */
    tempCode: string;
}
/**
 * 通过人脸核身
 * @apiName internal.auth.identifyByFace
 * @supportVersion ios: 4.6.18 android: 4.6.18
 */
export declare function identifyByFace$(params: IInternalAuthIdentifyByFaceParams): Promise<IInternalAuthIdentifyByFaceResult>;
export default identifyByFace$;