doum
9 天以前 60e49d600834344ae1b18357e76df74fbe160527
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
export declare const apiName = "internal.auth.identifyByOIDC";
/**
 * SSO专属账号登录 请求参数定义
 * @apiName internal.auth.identifyByOIDC
 */
export interface IInternalAuthIdentifyByOIDCParams {
    /** 三方专属账号登录Token */
    idToken: string;
}
/**
 * SSO专属账号登录 返回结果定义
 * @apiName internal.auth.identifyByOIDC
 */
export interface IInternalAuthIdentifyByOIDCResult {
    /** 0=成功;2=需要二次验证; */
    status: number;
}
/**
 * SSO专属账号登录
 * @apiName internal.auth.identifyByOIDC
 * @supportVersion ios: 5.1.33 android: 5.1.33
 * @author iOS:姚曦 Android:朴文
 */
export declare function identifyByOIDC$(params: IInternalAuthIdentifyByOIDCParams): Promise<IInternalAuthIdentifyByOIDCResult>;
export default identifyByOIDC$;