19 lines
460 B
Plaintext
19 lines
460 B
Plaintext
|
|
package com.nationalelectric.greenH5.identityAuth.util;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* 身份验证接口 常量类
|
||
|
|
* @author Feb
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
public class Const {
|
||
|
|
|
||
|
|
// URL
|
||
|
|
public static String ID_AUTH_URL = "http://www.idverify.cn/identityCloud/api/webApi/identification/fastIdentify";
|
||
|
|
// 身份验证接口 APPID
|
||
|
|
public static String ID_AUTH_APPID = "app5KvQO16uQo7rWh8v";
|
||
|
|
// 身份验证接口 APPKEY
|
||
|
|
public static String ID_AUTH_APPKEY = "CzwkfKUeh5ljnuVbdoxv3sjtiW4RDP3E";
|
||
|
|
|
||
|
|
|
||
|
|
}
|