## 接口描述 - 拍摄一段视频,按照指示做相应动作来识别是否为活⼈ - 动作活体⽀持眨眼、张嘴、左右摇头、上下点头四个动作 - 视频时长2秒左右,大小建议不超过5M,常用视频格式都支持 - 本文档适用于API、H5两种方式接入 ## API方式 ### 请求地址 `https://api.jumdata.com/lifecheck` ### 请求方式 - POST ### 请求格式 - x-www-form-urlencoded ### 请求参数 | 名称 | 类型 | 是否必填 | <div style="width:350px;">说明</div> | | --- | --- | --- | --- | | appId| String | 是 | 聚美智数分配的唯一标识 | | timestamp | Long | 是 | 当前时间戳(毫秒数) | | sign | String | 是 | 签名,见签名算法说明 | | productCode | String | 是 | 产品编号,固定值:life_check | | file | file | 否 | 视频文件,适合本地文件上传,file和url二选一 | | url | String | 否 | 视频文件地址,下载限时10秒,file和url二选一 | | motions | String | 是 | 用户动作序列,BLINK - 眨眼;MOUTH - 张嘴; NOD - 点头;YAW - 摇头 | ### 签名算法 ``` java sign = sha256(appId + appSecret + timestamp) ``` 用聚美智数分配的 **appId**、聚美智数分配的 **appSecret**,当前时间戳 **timestamp**,按上述顺序拼接成字符串,再进行 **sha256** 哈希得到。如下: ``` java String appId = "xyzxy2121zxyz"; String timestamp = "1555378976238"; String appSecret = "efcefcef1121cefcefc1212121"; String str = appId + appSecret + timestamp; String sign = sha256(str); ``` ### 通过返回样例 ``` json { "code": 200, "message": "成功", "charge": true, "taskNo": "69564903663951243279", "data":{ "passed": true, "face_image_url": "https://xxxx", "hack_score": 0.7475364208221436, "motions":{ "score": 0.4667766656564324, "motion": "BLINK", "passed": true } } } ``` ### 不通过返回样例 ``` json { "code": 200, "message": "成功", "charge": true, "taskNo": "69564903663951243279", "data":{ "desc": "检测不通过", "passed": false, "hack_score": 0.9975364208221436, "motions":{ "score": 0.1667766656504324, "motion": "BLINK", "passed": false } } } ``` ### 错误返回 ``` json { "msg": "参数错误", "code": 400 } ``` ### 公共返回字段 | 字段名 | <div style="width:350px;">说明 </div> | | --- | --- | | code | 返回码,详见:返回码说明 | | msg | code对应的说明,详见:返回码说明| | taskNo | 本次请求号 | | charge | 计费标志 | | data | 详见正确返回体 | ### code 返回码说明 | code | <div style="width:350px;">说明</div> | | --- | --- | | 200 | 成功 (计费) | | 400 | 参数错误 | | 404 | 接口地址不正确 | | 500 | 服务商维护,请稍候再试 | | 601 | 接口未开通,请联系聚美智数服务商 | | 602 | 账号已停用 | | 603 | 余额不足,请充值 | | 604 | 接口已停用 | | 605 | 次数不足,请购买套餐 | | 606 | 调用超限,请稍候再试 | | 607 | ip不在白名单 | | 609 | 请求过于频繁,请稍候再试 | | 610 | 请求超时 | | 999 | 其他,以实际返回为准 | ### data返回字段说明 | 字段名 | <div style="width:420px">说明</div> | | - | - | | passed | 总体检测结果,true - 通过,false - 未通过 | | desc |passed为false 活体检查失败的原因| | face_image_url | 活体通过之后,抓取的人脸照片 | | hack_score | 防hack检测分数,hack_score阈值为0.98,由行业大数据训练得到,大于0.98是hack行为,小于等于0.98是正常活人 | | motions |单个行为检测结果,详见motions返回字段说明 | ### motions返回字段说明 | 字段名 | <div style="width:420px">说明</div> | | - | - | | motion| 用户动作序列 | | passed | 单个动作检测结果 | | score | 单个动作分值 > 0.2表示通过,<= 0.2表示不通过 | ## H5方式 - 嵌入服务商提供的活体检测H5页面,并传递相关参数,可打开摄像头,根据指示拍摄视频并提交 - 服务商检测完成之后在页面上直接返回结果,也可以通过回调通知方式将结果发送给商家 - 视频时长2秒左右,大小建议不超过10M ### H5页面地址 `https://api-h5.jumdata.com/lifecheck?appId=×tamp=&sign=&productCode= ¬ifyUrl=&returnUrl=&title=&complexity=` > 参数通过url query的方式传递 [体验](https://api-h5.jumdata.com/lifecheck?appId=kSOnzJEi78tV8xvS&title=%E6%B4%BB%E4%BD%93%E6%A3%80%E6%B5%8BH5%E7%89%88-%E8%81%9A%E7%BE%8E%E6%99%BA%E6%95%B0) ### 参数说明 | 名称 | 必须 | <div style="width:420px">说明</div> | | - | - |- | | appId | 是 | 服务商分配的唯一标识 | | timestamp | 是 | 当前时间的毫秒数 | | sign | 是 | 签名,见签名算法说明 | | productCode | 是 | 固定值: life_check | | motions| 否 |用户动作,BLINK - 眨眼;MOUTH - 张嘴; NOD - 点头;YAW - 摇头。如不传则动作随机| | title | 否 | 活体检测h5页面标题 | | notifyUrl | 否 | 服务端接收活体检测结果地址 ,详见接收检测结果说明 | | successUrl | 否 | 活体检测成功跳转到该页面 ,详见接收检测结果说明 | | failUrl | 否 | 活体检测失败跳转到该页面 ,详见接收检测结果说明 | | taskId | 否 | 调用端生成一个唯一id,嵌入h5的时候传入该参数,服务商通知结果时原文返回,便于关联,当notifyUrl不为空时,taskId也不能为空 | returnUrl | 否 | 活体检测后跳转到该页面,当提供了successUrl或failUrl时,该参数无效 | ### 接收检测结果 - 商家的服务端和前端均可接收检测结果 #### 服务端接收检测结果 - 如果商家需要在服务端接收检测结果,需要提供接收检测结果接口,服务商会在检测之后将检测结果通知到`notifyUrl`参数指定的接口地址 ##### 请求方式 - POST ##### 请求格式 - formdata ##### 结果参数说明 | 名称 | <div style="width:420px">说明</div> | | - | - | | taskId | 返回打开h5页面时传入的taskId| | passed | true 通过;false 未通过| | face_image_url | 活体成功之后,抓取的人脸照片| | hack_score | 防hack检测分数,hack_score阈值为0.98,由行业大数据训练得到,大于0.98是hack行为,小于等于0.98是正常活人| | motion | 用户动作序列| | motions_passed | 单个动作检测结果| | motions_score | 单个动作分值| | sign | 结果参数签名,详见结果签名算法| | timestamp | 当前时间戳| ##### 结果签名算法 ``` sha256(appId + appSecret + passed + motions_score + hack_score + face_image_url + timestamp + taskId) ``` - 将结果参数和appId按顺序:appId,appSecret,passed,motions_score,hack_score,face_image_url,timestamp,taskId 接成字符串,再对拼接后的字符串进行sha256摘要得到 - 如果passed=false,则face_image_url不返回,生成sign时需要忽略 #### 前端接收检测结果 - 如果商家需要在前端接收检测结果,需要提供接收检测结果页面,服务商会在检测之后跳转到`successUrl` 参数或`failUrl`参数指定的页面地址,并将检测结果作为url参数带入,如下所示 ``` successUrl?sign=12121312sdsda&taskId=1212121313123123123&passed=true&face_image_url=https://xxx=&hack_score=0.8969539999961853&motion=NOD&motions_passed=true&motions_score=0.23534825444221497 ``` - 详细参数和服务端结果参数相同
https://api.jumdata.com/lifecheck
名称 | 类型 | 是否必填 | 说明 |
---|---|---|---|
appId | String | 是 | 聚美智数分配的唯一标识 |
timestamp | Long | 是 | 当前时间戳(毫秒数) |
sign | String | 是 | 签名,见签名算法说明 |
productCode | String | 是 | 产品编号,固定值:life_check |
file | file | 否 | 视频文件,适合本地文件上传,file和url二选一 |
url | String | 否 | 视频文件地址,下载限时10秒,file和url二选一 |
motions | String | 是 | 用户动作序列,BLINK - 眨眼;MOUTH - 张嘴; NOD - 点头;YAW - 摇头 |
sign = sha256(appId + appSecret + timestamp)
用聚美智数分配的 appId、聚美智数分配的 appSecret,当前时间戳 timestamp,按上述顺序拼接成字符串,再进行 sha256 哈希得到。如下:
String appId = "xyzxy2121zxyz";
String timestamp = "1555378976238";
String appSecret = "efcefcef1121cefcefc1212121";
String str = appId + appSecret + timestamp;
String sign = sha256(str);
{
"code": 200,
"message": "成功",
"charge": true,
"taskNo": "69564903663951243279",
"data":{
"passed": true,
"face_image_url": "https://xxxx",
"hack_score": 0.7475364208221436,
"motions":{
"score": 0.4667766656564324,
"motion": "BLINK",
"passed": true
}
}
}
{
"code": 200,
"message": "成功",
"charge": true,
"taskNo": "69564903663951243279",
"data":{
"desc": "检测不通过",
"passed": false,
"hack_score": 0.9975364208221436,
"motions":{
"score": 0.1667766656504324,
"motion": "BLINK",
"passed": false
}
}
}
{
"msg": "参数错误",
"code": 400
}
字段名 | 说明 |
---|---|
code | 返回码,详见:返回码说明 |
msg | code对应的说明,详见:返回码说明 |
taskNo | 本次请求号 |
charge | 计费标志 |
data | 详见正确返回体 |
code | 说明 |
---|---|
200 | 成功 (计费) |
400 | 参数错误 |
404 | 接口地址不正确 |
500 | 服务商维护,请稍候再试 |
601 | 接口未开通,请联系聚美智数服务商 |
602 | 账号已停用 |
603 | 余额不足,请充值 |
604 | 接口已停用 |
605 | 次数不足,请购买套餐 |
606 | 调用超限,请稍候再试 |
607 | ip不在白名单 |
609 | 请求过于频繁,请稍候再试 |
610 | 请求超时 |
999 | 其他,以实际返回为准 |
字段名 | 说明 |
---|---|
passed | 总体检测结果,true - 通过,false - 未通过 |
desc | passed为false 活体检查失败的原因 |
face_image_url | 活体通过之后,抓取的人脸照片 |
hack_score | 防hack检测分数,hack_score阈值为0.98,由行业大数据训练得到,大于0.98是hack行为,小于等于0.98是正常活人 |
motions | 单个行为检测结果,详见motions返回字段说明 |
字段名 | 说明 |
---|---|
motion | 用户动作序列 |
passed | 单个动作检测结果 |
score | 单个动作分值 > 0.2表示通过,<= 0.2表示不通过 |
https://api-h5.jumdata.com/lifecheck?appId=×tamp=&sign=&productCode= ¬ifyUrl=&returnUrl=&title=&complexity=
参数通过url query的方式传递
名称 | 必须 | 说明 |
---|---|---|
appId | 是 | 服务商分配的唯一标识 |
timestamp | 是 | 当前时间的毫秒数 |
sign | 是 | 签名,见签名算法说明 |
productCode | 是 | 固定值: life_check |
motions | 否 | 用户动作,BLINK - 眨眼;MOUTH - 张嘴; NOD - 点头;YAW - 摇头。如不传则动作随机 |
title | 否 | 活体检测h5页面标题 |
notifyUrl | 否 | 服务端接收活体检测结果地址 ,详见接收检测结果说明 |
successUrl | 否 | 活体检测成功跳转到该页面 ,详见接收检测结果说明 |
failUrl | 否 | 活体检测失败跳转到该页面 ,详见接收检测结果说明 |
taskId | 否 | 调用端生成一个唯一id,嵌入h5的时候传入该参数,服务商通知结果时原文返回,便于关联,当notifyUrl不为空时,taskId也不能为空 |
returnUrl | 否 | 活体检测后跳转到该页面,当提供了successUrl或failUrl时,该参数无效 |
notifyUrl
参数指定的接口地址名称 | 说明 |
---|---|
taskId | 返回打开h5页面时传入的taskId |
passed | true 通过;false 未通过 |
face_image_url | 活体成功之后,抓取的人脸照片 |
hack_score | 防hack检测分数,hack_score阈值为0.98,由行业大数据训练得到,大于0.98是hack行为,小于等于0.98是正常活人 |
motion | 用户动作序列 |
motions_passed | 单个动作检测结果 |
motions_score | 单个动作分值 |
sign | 结果参数签名,详见结果签名算法 |
timestamp | 当前时间戳 |
sha256(appId + appSecret + passed + motions_score + hack_score + face_image_url + timestamp + taskId)
successUrl
参数或failUrl
参数指定的页面地址,并将检测结果作为url参数带入,如下所示successUrl?sign=12121312sdsda&taskId=1212121313123123123&passed=true&face_image_url=https://xxx=&hack_score=0.8969539999961853&motion=NOD&motions_passed=true&motions_score=0.23534825444221497
https://api.jumdata.com/lifecheck
名称 | 类型 | 是否必填 | 说明 |
---|---|---|---|
appId | String | 是 | 聚美智数分配的唯一标识 |
timestamp | Long | 是 | 当前时间戳(毫秒数) |
sign | String | 是 | 签名,见签名算法说明 |
productCode | String | 是 | 产品编号,固定值:life_check |
file | file | 否 | 视频文件,适合本地文件上传,file和url二选一 |
url | String | 否 | 视频文件地址,下载限时10秒,file和url二选一 |
motions | String | 是 | 用户动作序列,BLINK - 眨眼;MOUTH - 张嘴; NOD - 点头;YAW - 摇头 |
sign = sha256(appId + appSecret + timestamp)
用聚美智数分配的 appId、聚美智数分配的 appSecret,当前时间戳 timestamp,按上述顺序拼接成字符串,再进行 sha256 哈希得到。如下:
String appId = "xyzxy2121zxyz";
String timestamp = "1555378976238";
String appSecret = "efcefcef1121cefcefc1212121";
String str = appId + appSecret + timestamp;
String sign = sha256(str);
{
"code": 200,
"message": "成功",
"charge": true,
"taskNo": "69564903663951243279",
"data":{
"passed": true,
"face_image_url": "https://xxxx",
"hack_score": 0.7475364208221436,
"motions":{
"score": 0.4667766656564324,
"motion": "BLINK",
"passed": true
}
}
}
{
"code": 200,
"message": "成功",
"charge": true,
"taskNo": "69564903663951243279",
"data":{
"desc": "检测不通过",
"passed": false,
"hack_score": 0.9975364208221436,
"motions":{
"score": 0.1667766656504324,
"motion": "BLINK",
"passed": false
}
}
}
{
"msg": "参数错误",
"code": 400
}
字段名 | 说明 |
---|---|
code | 返回码,详见:返回码说明 |
msg | code对应的说明,详见:返回码说明 |
taskNo | 本次请求号 |
charge | 计费标志 |
data | 详见正确返回体 |
code | 说明 |
---|---|
200 | 成功 (计费) |
400 | 参数错误 |
404 | 接口地址不正确 |
500 | 服务商维护,请稍候再试 |
601 | 接口未开通,请联系聚美智数服务商 |
602 | 账号已停用 |
603 | 余额不足,请充值 |
604 | 接口已停用 |
605 | 次数不足,请购买套餐 |
606 | 调用超限,请稍候再试 |
607 | ip不在白名单 |
609 | 请求过于频繁,请稍候再试 |
610 | 请求超时 |
999 | 其他,以实际返回为准 |
字段名 | 说明 |
---|---|
passed | 总体检测结果,true - 通过,false - 未通过 |
desc | passed为false 活体检查失败的原因 |
face_image_url | 活体通过之后,抓取的人脸照片 |
hack_score | 防hack检测分数,hack_score阈值为0.98,由行业大数据训练得到,大于0.98是hack行为,小于等于0.98是正常活人 |
motions | 单个行为检测结果,详见motions返回字段说明 |
字段名 | 说明 |
---|---|
motion | 用户动作序列 |
passed | 单个动作检测结果 |
score | 单个动作分值 > 0.2表示通过,<= 0.2表示不通过 |
https://api-h5.jumdata.com/lifecheck?appId=×tamp=&sign=&productCode= ¬ifyUrl=&returnUrl=&title=&complexity=
参数通过url query的方式传递
名称 | 必须 | 说明 |
---|---|---|
appId | 是 | 服务商分配的唯一标识 |
timestamp | 是 | 当前时间的毫秒数 |
sign | 是 | 签名,见签名算法说明 |
productCode | 是 | 固定值: life_check |
motions | 否 | 用户动作,BLINK - 眨眼;MOUTH - 张嘴; NOD - 点头;YAW - 摇头。如不传则动作随机 |
title | 否 | 活体检测h5页面标题 |
notifyUrl | 否 | 服务端接收活体检测结果地址 ,详见接收检测结果说明 |
successUrl | 否 | 活体检测成功跳转到该页面 ,详见接收检测结果说明 |
failUrl | 否 | 活体检测失败跳转到该页面 ,详见接收检测结果说明 |
taskId | 否 | 调用端生成一个唯一id,嵌入h5的时候传入该参数,服务商通知结果时原文返回,便于关联,当notifyUrl不为空时,taskId也不能为空 |
returnUrl | 否 | 活体检测后跳转到该页面,当提供了successUrl或failUrl时,该参数无效 |
notifyUrl
参数指定的接口地址名称 | 说明 |
---|---|
taskId | 返回打开h5页面时传入的taskId |
passed | true 通过;false 未通过 |
face_image_url | 活体成功之后,抓取的人脸照片 |
hack_score | 防hack检测分数,hack_score阈值为0.98,由行业大数据训练得到,大于0.98是hack行为,小于等于0.98是正常活人 |
motion | 用户动作序列 |
motions_passed | 单个动作检测结果 |
motions_score | 单个动作分值 |
sign | 结果参数签名,详见结果签名算法 |
timestamp | 当前时间戳 |
sha256(appId + appSecret + passed + motions_score + hack_score + face_image_url + timestamp + taskId)
successUrl
参数或failUrl
参数指定的页面地址,并将检测结果作为url参数带入,如下所示successUrl?sign=12121312sdsda&taskId=1212121313123123123&passed=true&face_image_url=https://xxx=&hack_score=0.8969539999961853&motion=NOD&motions_passed=true&motions_score=0.23534825444221497
``` Java import com.anq.core.utils.HttpUtil; import com.anq.core.utils.JsonUtil; import lombok.extern.slf4j.Slf4j; import org.apache.commons.codec.digest.DigestUtils; import org.junit.Test; import java.util.HashMap; import java.util.Map; @Slf4j public class Examples { String appId = "聚美智数分配的appId"; String appSecret = "聚美智数分配的appSecret"; String url = "https://api.jumdata.com/lifecheck"; @Test public void examples() { long timestamp = System.currentTimeMillis(); String sign = DigestUtils.sha256Hex(appId + appSecret + timestamp); // 生成sign Map<String, Object> params = new HashMap<String, Object>(); params.put("appId", appId); // 聚美智数分配的appId params.put("timestamp", timestamp); params.put("sign", sign); params.put("productCode", "life_check");// 固定值 params.put("url", ""); // 视频文件地址 下载限时10秒,file和url二选一 params.put("motions", ""); // 用户动作序列 BLINK - 眨眼;MOUTH - 张嘴; NOD - 点头;YAW - 摇头 // HttpUtil可从这里下载 https://file.jumdata.com/support/HttpUtil.java String resultJson = HttpUtil.postForm(url, null, params); log.info(resultJson); // JumeiOpenApiResponse 可从这里下载 https://file.jumdata.com/support/JumeiOpenApiResponse.java // JsonUtil可从这里下载 https://file.jumdata.com/support/JsonUtil.java JumeiOpenApiResponse jumeiOpenApiResponse = JsonUtil.toObject(resultJson, JumeiOpenApiResponse.class) if(jumeiOpenApiResponse.getCode() == 200){ //TODO }else{ //TODO } } } ```
import com.anq.core.utils.HttpUtil;
import com.anq.core.utils.JsonUtil;
import lombok.extern.slf4j.Slf4j;
import org.apache.commons.codec.digest.DigestUtils;
import org.junit.Test;
import java.util.HashMap;
import java.util.Map;
@Slf4j
public class Examples {
String appId = "聚美智数分配的appId";
String appSecret = "聚美智数分配的appSecret";
String url = "https://api.jumdata.com/lifecheck";
@Test
public void examples() {
long timestamp = System.currentTimeMillis();
String sign = DigestUtils.sha256Hex(appId + appSecret + timestamp); // 生成sign
Map<String, Object> params = new HashMap<String, Object>();
params.put("appId", appId); // 聚美智数分配的appId
params.put("timestamp", timestamp);
params.put("sign", sign);
params.put("productCode", "life_check");// 固定值
params.put("url", ""); // 视频文件地址 下载限时10秒,file和url二选一
params.put("motions", ""); // 用户动作序列 BLINK - 眨眼;MOUTH - 张嘴; NOD - 点头;YAW - 摇头
// HttpUtil可从这里下载 https://file.jumdata.com/support/HttpUtil.java
String resultJson = HttpUtil.postForm(url, null, params);
log.info(resultJson);
// JumeiOpenApiResponse 可从这里下载 https://file.jumdata.com/support/JumeiOpenApiResponse.java
// JsonUtil可从这里下载 https://file.jumdata.com/support/JsonUtil.java
JumeiOpenApiResponse jumeiOpenApiResponse = JsonUtil.toObject(resultJson, JumeiOpenApiResponse.class)
if(jumeiOpenApiResponse.getCode() == 200){
//TODO
}else{
//TODO
}
}
}
import com.anq.core.utils.HttpUtil;
import com.anq.core.utils.JsonUtil;
import lombok.extern.slf4j.Slf4j;
import org.apache.commons.codec.digest.DigestUtils;
import org.junit.Test;
import java.util.HashMap;
import java.util.Map;
@Slf4j
public class Examples {
String appId = "聚美智数分配的appId";
String appSecret = "聚美智数分配的appSecret";
String url = "https://api.jumdata.com/lifecheck";
@Test
public void examples() {
long timestamp = System.currentTimeMillis();
String sign = DigestUtils.sha256Hex(appId + appSecret + timestamp); // 生成sign
Map<String, Object> params = new HashMap<String, Object>();
params.put("appId", appId); // 聚美智数分配的appId
params.put("timestamp", timestamp);
params.put("sign", sign);
params.put("productCode", "life_check");// 固定值
params.put("url", ""); // 视频文件地址 下载限时10秒,file和url二选一
params.put("motions", ""); // 用户动作序列 BLINK - 眨眼;MOUTH - 张嘴; NOD - 点头;YAW - 摇头
// HttpUtil可从这里下载 https://file.jumdata.com/support/HttpUtil.java
String resultJson = HttpUtil.postForm(url, null, params);
log.info(resultJson);
// JumeiOpenApiResponse 可从这里下载 https://file.jumdata.com/support/JumeiOpenApiResponse.java
// JsonUtil可从这里下载 https://file.jumdata.com/support/JsonUtil.java
JumeiOpenApiResponse jumeiOpenApiResponse = JsonUtil.toObject(resultJson, JumeiOpenApiResponse.class)
if(jumeiOpenApiResponse.getCode() == 200){
//TODO
}else{
//TODO
}
}
}
``` PHP <?php $appId = "聚美智数分配的appId"; $appSecret= "聚美智数分配的appSecret"; $url = "https://api.jumdata.com/lifecheck"; $method = "POST"; $headers = array(); //根据API的要求,定义相对应的Content-Type array_push($headers, "Content-Type" . ":" . "application/x-www-form-urlencoded; charset=UTF-8"); $timestamp = getUnixTimestamp(); var_dump($timestamp); $sign = hash('sha256',$appId . $appSecret . $timestamp); // 生成sign var_dump($sign); $url = ""; // 视频文件地址 下载限时10秒,file和url二选一 $motions = ""; // 用户动作序列 BLINK - 眨眼;MOUTH - 张嘴; NOD - 点头;YAW - 摇头 $bodys = "appId=". $appId . "&sign=" . $sign . "×tamp=" . $timestamp . "&productCode=life_check" . "&url=" . $url . "&motions=" . $motions ; $curl = curl_init(); curl_setopt($curl, CURLOPT_CUSTOMREQUEST, $method); curl_setopt($curl, CURLOPT_URL, $url); curl_setopt($curl, CURLOPT_HTTPHEADER, $headers); curl_setopt($curl, CURLOPT_POSTFIELDS, $bodys); curl_setopt($curl, CURLOPT_FAILONERROR, false); curl_setopt($curl, CURLOPT_RETURNTRANSFER, true); if (1 == strpos("$".$url, "https://")) { curl_setopt($curl, CURLOPT_SSL_VERIFYPEER, false); curl_setopt($curl, CURLOPT_SSL_VERIFYHOST, false); } var_dump(curl_exec($curl)); function getUnixTimestamp () { list($s1, $s2) = explode(' ', microtime()); return sprintf('%.0f',(floatval($s1) + floatval($s2)) * 1000); } ```
<?php
$appId = "聚美智数分配的appId";
$appSecret= "聚美智数分配的appSecret";
$url = "https://api.jumdata.com/lifecheck";
$method = "POST";
$headers = array();
//根据API的要求,定义相对应的Content-Type
array_push($headers, "Content-Type" . ":" . "application/x-www-form-urlencoded; charset=UTF-8");
$timestamp = getUnixTimestamp();
var_dump($timestamp);
$sign = hash('sha256',$appId . $appSecret . $timestamp); // 生成sign
var_dump($sign);
$url = ""; // 视频文件地址 下载限时10秒,file和url二选一
$motions = ""; // 用户动作序列 BLINK - 眨眼;MOUTH - 张嘴; NOD - 点头;YAW - 摇头
$bodys = "appId=". $appId . "&sign=" . $sign . "×tamp=" . $timestamp . "&productCode=life_check" . "&url=" . $url . "&motions=" . $motions ;
$curl = curl_init();
curl_setopt($curl, CURLOPT_CUSTOMREQUEST, $method);
curl_setopt($curl, CURLOPT_URL, $url);
curl_setopt($curl, CURLOPT_HTTPHEADER, $headers);
curl_setopt($curl, CURLOPT_POSTFIELDS, $bodys);
curl_setopt($curl, CURLOPT_FAILONERROR, false);
curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);
if (1 == strpos("$".$url, "https://"))
{
curl_setopt($curl, CURLOPT_SSL_VERIFYPEER, false);
curl_setopt($curl, CURLOPT_SSL_VERIFYHOST, false);
}
var_dump(curl_exec($curl));
function getUnixTimestamp ()
{
list($s1, $s2) = explode(' ', microtime());
return sprintf('%.0f',(floatval($s1) + floatval($s2)) * 1000);
}
<?php
$appId = "聚美智数分配的appId";
$appSecret= "聚美智数分配的appSecret";
$url = "https://api.jumdata.com/lifecheck";
$method = "POST";
$headers = array();
//根据API的要求,定义相对应的Content-Type
array_push($headers, "Content-Type" . ":" . "application/x-www-form-urlencoded; charset=UTF-8");
$timestamp = getUnixTimestamp();
var_dump($timestamp);
$sign = hash('sha256',$appId . $appSecret . $timestamp); // 生成sign
var_dump($sign);
$url = ""; // 视频文件地址 下载限时10秒,file和url二选一
$motions = ""; // 用户动作序列 BLINK - 眨眼;MOUTH - 张嘴; NOD - 点头;YAW - 摇头
$bodys = "appId=". $appId . "&sign=" . $sign . "×tamp=" . $timestamp . "&productCode=life_check" . "&url=" . $url . "&motions=" . $motions ;
$curl = curl_init();
curl_setopt($curl, CURLOPT_CUSTOMREQUEST, $method);
curl_setopt($curl, CURLOPT_URL, $url);
curl_setopt($curl, CURLOPT_HTTPHEADER, $headers);
curl_setopt($curl, CURLOPT_POSTFIELDS, $bodys);
curl_setopt($curl, CURLOPT_FAILONERROR, false);
curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);
if (1 == strpos("$".$url, "https://"))
{
curl_setopt($curl, CURLOPT_SSL_VERIFYPEER, false);
curl_setopt($curl, CURLOPT_SSL_VERIFYHOST, false);
}
var_dump(curl_exec($curl));
function getUnixTimestamp ()
{
list($s1, $s2) = explode(' ', microtime());
return sprintf('%.0f',(floatval($s1) + floatval($s2)) * 1000);
}
``` CSharp using System; using System.IO; using System.Net; using System.Net.Security; using System.Security.Cryptography; using System.Security.Cryptography.X509Certificates; using System.Text; public class IdcardValidate { private const String url = "https://api.jumdata.com/lifecheck"; private const String method = "POST"; private const String appId = "聚美智数分配"; private const String appSecret = "聚美智数分配"; public static void Main(string[] args) { TimeSpan ts = DateTime.UtcNow - new DateTime(1970, 1, 1, 0, 0, 0, 0); String timestamp = Convert.ToInt64(ts.TotalMilliseconds).ToString(); String sign = SHA256(appId + appSecret + timestamp); String url = ""; // 视频文件地址 下载限时10秒,file和url二选一 String motions = ""; // 用户动作序列 BLINK - 眨眼;MOUTH - 张嘴; NOD - 点头;YAW - 摇头 String bodys = "appId=" + appId + "&sign=" + sign + "×tamp=" + timestamp + "&productCode=life_check" + "&url=" + url + "&motions=" + motions ; HttpWebRequest httpRequest = null; HttpWebResponse httpResponse = null; httpRequest = (HttpWebRequest) WebRequest.CreateDefault(new Uri(url)); httpRequest.Method = method; httpRequest.ContentType = "application/x-www-form-urlencoded; charset=UTF-8"; byte[] data = Encoding.UTF8.GetBytes(bodys); using (Stream stream = httpRequest.GetRequestStream()) { stream.Write(data, 0, data.Length); } httpResponse = (HttpWebResponse) httpRequest.GetResponse(); Console.WriteLine(httpResponse.StatusCode); Stream st = httpResponse.GetResponseStream(); StreamReader reader = new StreamReader(st, Encoding.GetEncoding("utf-8")); Console.WriteLine(reader.ReadToEnd()); } public static string SHA256(string str) { byte[] SHA256Data = Encoding.UTF8.GetBytes(str); SHA256Managed Sha256 = new SHA256Managed(); byte[] by = Sha256.ComputeHash(SHA256Data); return BitConverter.ToString(by).Replace("-", "").ToLower(); } } ```
using System;
using System.IO;
using System.Net;
using System.Net.Security;
using System.Security.Cryptography;
using System.Security.Cryptography.X509Certificates;
using System.Text;
public class IdcardValidate
{
private const String url = "https://api.jumdata.com/lifecheck";
private const String method = "POST";
private const String appId = "聚美智数分配";
private const String appSecret = "聚美智数分配";
public static void Main(string[] args)
{
TimeSpan ts = DateTime.UtcNow - new DateTime(1970, 1, 1, 0, 0, 0, 0);
String timestamp = Convert.ToInt64(ts.TotalMilliseconds).ToString();
String sign = SHA256(appId + appSecret + timestamp);
String url = ""; // 视频文件地址 下载限时10秒,file和url二选一
String motions = ""; // 用户动作序列 BLINK - 眨眼;MOUTH - 张嘴; NOD - 点头;YAW - 摇头
String bodys = "appId=" + appId + "&sign=" + sign + "×tamp=" + timestamp + "&productCode=life_check" + "&url=" + url + "&motions=" + motions ;
HttpWebRequest httpRequest = null;
HttpWebResponse httpResponse = null;
httpRequest = (HttpWebRequest) WebRequest.CreateDefault(new Uri(url));
httpRequest.Method = method;
httpRequest.ContentType = "application/x-www-form-urlencoded; charset=UTF-8";
byte[] data = Encoding.UTF8.GetBytes(bodys);
using (Stream stream = httpRequest.GetRequestStream())
{
stream.Write(data, 0, data.Length);
}
httpResponse = (HttpWebResponse) httpRequest.GetResponse();
Console.WriteLine(httpResponse.StatusCode);
Stream st = httpResponse.GetResponseStream();
StreamReader reader = new StreamReader(st, Encoding.GetEncoding("utf-8"));
Console.WriteLine(reader.ReadToEnd());
}
public static string SHA256(string str)
{
byte[] SHA256Data = Encoding.UTF8.GetBytes(str);
SHA256Managed Sha256 = new SHA256Managed();
byte[] by = Sha256.ComputeHash(SHA256Data);
return BitConverter.ToString(by).Replace("-", "").ToLower();
}
}
using System;
using System.IO;
using System.Net;
using System.Net.Security;
using System.Security.Cryptography;
using System.Security.Cryptography.X509Certificates;
using System.Text;
public class IdcardValidate
{
private const String url = "https://api.jumdata.com/lifecheck";
private const String method = "POST";
private const String appId = "聚美智数分配";
private const String appSecret = "聚美智数分配";
public static void Main(string[] args)
{
TimeSpan ts = DateTime.UtcNow - new DateTime(1970, 1, 1, 0, 0, 0, 0);
String timestamp = Convert.ToInt64(ts.TotalMilliseconds).ToString();
String sign = SHA256(appId + appSecret + timestamp);
String url = ""; // 视频文件地址 下载限时10秒,file和url二选一
String motions = ""; // 用户动作序列 BLINK - 眨眼;MOUTH - 张嘴; NOD - 点头;YAW - 摇头
String bodys = "appId=" + appId + "&sign=" + sign + "×tamp=" + timestamp + "&productCode=life_check" + "&url=" + url + "&motions=" + motions ;
HttpWebRequest httpRequest = null;
HttpWebResponse httpResponse = null;
httpRequest = (HttpWebRequest) WebRequest.CreateDefault(new Uri(url));
httpRequest.Method = method;
httpRequest.ContentType = "application/x-www-form-urlencoded; charset=UTF-8";
byte[] data = Encoding.UTF8.GetBytes(bodys);
using (Stream stream = httpRequest.GetRequestStream())
{
stream.Write(data, 0, data.Length);
}
httpResponse = (HttpWebResponse) httpRequest.GetResponse();
Console.WriteLine(httpResponse.StatusCode);
Stream st = httpResponse.GetResponseStream();
StreamReader reader = new StreamReader(st, Encoding.GetEncoding("utf-8"));
Console.WriteLine(reader.ReadToEnd());
}
public static string SHA256(string str)
{
byte[] SHA256Data = Encoding.UTF8.GetBytes(str);
SHA256Managed Sha256 = new SHA256Managed();
byte[] by = Sha256.ComputeHash(SHA256Data);
return BitConverter.ToString(by).Replace("-", "").ToLower();
}
}
``` Python import requests import time import hashlib appId = "聚美智数分配" appSecret = "聚美智数分配" url = "https://api.jumdata.com/lifecheck" method = 'POST' time = time.time() timestamp = str(round(time * 1000)) print (timestamp) tmp = appId + appSecret + timestamp sign = hashlib.sha256(tmp.encode("utf8")).hexdigest() bodys = {} bodys['appId'] = appId // 聚美智数分配 bodys['timestamp'] = timestamp bodys['sign'] = sign bodys['productCode']='life_check' // 固定值 bodys['url'] = '' // 视频文件地址 下载限时10秒,file和url二选一 bodys['motions'] = '' // 用户动作序列 BLINK - 眨眼;MOUTH - 张嘴; NOD - 点头;YAW - 摇头 headers = { 'Content-Type': 'application/x-www-form-urlencoded; charset=UTF-8' } response = requests.post(url, data = bodys, headers = headers) print (response.text) ```
import requests
import time
import hashlib
appId = "聚美智数分配"
appSecret = "聚美智数分配"
url = "https://api.jumdata.com/lifecheck"
method = 'POST'
time = time.time()
timestamp = str(round(time * 1000))
print (timestamp)
tmp = appId + appSecret + timestamp
sign = hashlib.sha256(tmp.encode("utf8")).hexdigest()
bodys = {}
bodys['appId'] = appId // 聚美智数分配
bodys['timestamp'] = timestamp
bodys['sign'] = sign
bodys['productCode']='life_check' // 固定值
bodys['url'] = '' // 视频文件地址 下载限时10秒,file和url二选一
bodys['motions'] = '' // 用户动作序列 BLINK - 眨眼;MOUTH - 张嘴; NOD - 点头;YAW - 摇头
headers = {
'Content-Type': 'application/x-www-form-urlencoded; charset=UTF-8'
}
response = requests.post(url, data = bodys, headers = headers)
print (response.text)
import requests
import time
import hashlib
appId = "聚美智数分配"
appSecret = "聚美智数分配"
url = "https://api.jumdata.com/lifecheck"
method = 'POST'
time = time.time()
timestamp = str(round(time * 1000))
print (timestamp)
tmp = appId + appSecret + timestamp
sign = hashlib.sha256(tmp.encode("utf8")).hexdigest()
bodys = {}
bodys['appId'] = appId // 聚美智数分配
bodys['timestamp'] = timestamp
bodys['sign'] = sign
bodys['productCode']='life_check' // 固定值
bodys['url'] = '' // 视频文件地址 下载限时10秒,file和url二选一
bodys['motions'] = '' // 用户动作序列 BLINK - 眨眼;MOUTH - 张嘴; NOD - 点头;YAW - 摇头
headers = {
'Content-Type': 'application/x-www-form-urlencoded; charset=UTF-8'
}
response = requests.post(url, data = bodys, headers = headers)
print (response.text)