### 接口描述 - 传入营业执照照片,扫描识别营业执照信息并返回 - 照片格式为 jpg(jpeg)、png、bmp,宽和高大于8px,小于等于4000px - 文件小于等于1.5MB,建议300KB以内 ### 请求地址 `https://api.jumdata.com/ocr/business-license` ### 请求方式 - POST ### 请求格式 - x-www-form-urlencoded ### 请求参数 | 名称 | 类型 | 是否必填 | <div style="width:350px;">说明</div> | | --- | --- | --- | --- | | appId| String | 是 | 聚美智数分配的唯一标识 | | timestamp | Long | 是 | 当前时间戳(毫秒数) | | sign | String | 是 | 签名,见签名算法说明 | | productCode | String | 是 | 产品编号,固定值:business_license_ocr | | url | String | 否 | 营业执照照片url,营业执照照片url,file、base64三选一 | | file | file | 否 | 营业执照照片文件,营业执照照片url,file、base64三选一 | | base64 | String | 否 | 营业执照照片base64,营业执照照片url,file、base64三选一 | ### 签名算法 ``` 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, // 返回码,详见返回码说明(非http返回状态码) "msg": "成功", // code对应说明 "charge": true, // 计费标志 "taskNo": "69564903663951243279", // 唯一请求号 "data": { "legal_person": "胡三", "capital": "贰佰万元整", "valid_date": "20620802", "address": "浙江省杭州市西湖区文二路12号", "reg_num": "91430102023653079C", "company": "杭州万源责任有限公司", "establish_date": "20120803", "business": "通讯产品研发;通讯设备及配套设备批发;移动电信业务代理服务;电子产品、计算机软件、计算机辅助设备的销售。(依法须经批准的项目,经相关部门批准后方可开展经营活动)", "type": "有限责任公司(自然人投资或控股)" } } ``` ### 错误返回 ``` 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> | | - | - | | legal_person | 法定代表人 或 经营者 | capital | 注册资本 | valid_date | 营业期限 | address | 住所 或 经营场所 | reg_num | 注册号 或 社会统一信用代码 | company | 名称 | establish_date | 注册日期 | business | 经营范围 | type | 类型
https://api.jumdata.com/ocr/business-license
名称 | 类型 | 是否必填 | 说明 |
---|---|---|---|
appId | String | 是 | 聚美智数分配的唯一标识 |
timestamp | Long | 是 | 当前时间戳(毫秒数) |
sign | String | 是 | 签名,见签名算法说明 |
productCode | String | 是 | 产品编号,固定值:business_license_ocr |
url | String | 否 | 营业执照照片url,营业执照照片url,file、base64三选一 |
file | file | 否 | 营业执照照片文件,营业执照照片url,file、base64三选一 |
base64 | String | 否 | 营业执照照片base64,营业执照照片url,file、base64三选一 |
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, // 返回码,详见返回码说明(非http返回状态码)
"msg": "成功", // code对应说明
"charge": true, // 计费标志
"taskNo": "69564903663951243279", // 唯一请求号
"data": {
"legal_person": "胡三",
"capital": "贰佰万元整",
"valid_date": "20620802",
"address": "浙江省杭州市西湖区文二路12号",
"reg_num": "91430102023653079C",
"company": "杭州万源责任有限公司",
"establish_date": "20120803",
"business": "通讯产品研发;通讯设备及配套设备批发;移动电信业务代理服务;电子产品、计算机软件、计算机辅助设备的销售。(依法须经批准的项目,经相关部门批准后方可开展经营活动)",
"type": "有限责任公司(自然人投资或控股)"
}
}
{
"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 | 其他,以实际返回为准 |
字段名 | 说明 |
---|---|
legal_person | 法定代表人 或 经营者 |
capital | 注册资本 |
valid_date | 营业期限 |
address | 住所 或 经营场所 |
reg_num | 注册号 或 社会统一信用代码 |
company | 名称 |
establish_date | 注册日期 |
business | 经营范围 |
type | 类型 |
https://api.jumdata.com/ocr/business-license
名称 | 类型 | 是否必填 | 说明 |
---|---|---|---|
appId | String | 是 | 聚美智数分配的唯一标识 |
timestamp | Long | 是 | 当前时间戳(毫秒数) |
sign | String | 是 | 签名,见签名算法说明 |
productCode | String | 是 | 产品编号,固定值:business_license_ocr |
url | String | 否 | 营业执照照片url,营业执照照片url,file、base64三选一 |
file | file | 否 | 营业执照照片文件,营业执照照片url,file、base64三选一 |
base64 | String | 否 | 营业执照照片base64,营业执照照片url,file、base64三选一 |
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, // 返回码,详见返回码说明(非http返回状态码)
"msg": "成功", // code对应说明
"charge": true, // 计费标志
"taskNo": "69564903663951243279", // 唯一请求号
"data": {
"legal_person": "胡三",
"capital": "贰佰万元整",
"valid_date": "20620802",
"address": "浙江省杭州市西湖区文二路12号",
"reg_num": "91430102023653079C",
"company": "杭州万源责任有限公司",
"establish_date": "20120803",
"business": "通讯产品研发;通讯设备及配套设备批发;移动电信业务代理服务;电子产品、计算机软件、计算机辅助设备的销售。(依法须经批准的项目,经相关部门批准后方可开展经营活动)",
"type": "有限责任公司(自然人投资或控股)"
}
}
{
"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 | 其他,以实际返回为准 |
字段名 | 说明 |
---|---|
legal_person | 法定代表人 或 经营者 |
capital | 注册资本 |
valid_date | 营业期限 |
address | 住所 或 经营场所 |
reg_num | 注册号 或 社会统一信用代码 |
company | 名称 |
establish_date | 注册日期 |
business | 经营范围 |
type | 类型 |
``` 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/ocr/business-license"; @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", "business_license_ocr");// 固定值 params.put("url", ""); // 营业执照照片url 营业执照照片url,file、base64三选一 params.put("base64", ""); // 营业执照照片base64 营业执照照片url,file、base64三选一 // 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/ocr/business-license";
@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", "business_license_ocr");// 固定值
params.put("url", ""); // 营业执照照片url 营业执照照片url,file、base64三选一
params.put("base64", ""); // 营业执照照片base64 营业执照照片url,file、base64三选一
// 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/ocr/business-license";
@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", "business_license_ocr");// 固定值
params.put("url", ""); // 营业执照照片url 营业执照照片url,file、base64三选一
params.put("base64", ""); // 营业执照照片base64 营业执照照片url,file、base64三选一
// 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/ocr/business-license"; $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 = ""; // 营业执照照片url 营业执照照片url,file、base64三选一 $base64 = ""; // 营业执照照片base64 营业执照照片url,file、base64三选一 $bodys = "appId=". $appId . "&sign=" . $sign . "×tamp=" . $timestamp . "&productCode=business_license_ocr" . "&url=" . $url . "&base64=" . $base64 ; $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/ocr/business-license";
$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 = ""; // 营业执照照片url 营业执照照片url,file、base64三选一
$base64 = ""; // 营业执照照片base64 营业执照照片url,file、base64三选一
$bodys = "appId=". $appId . "&sign=" . $sign . "×tamp=" . $timestamp . "&productCode=business_license_ocr" . "&url=" . $url . "&base64=" . $base64 ;
$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/ocr/business-license";
$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 = ""; // 营业执照照片url 营业执照照片url,file、base64三选一
$base64 = ""; // 营业执照照片base64 营业执照照片url,file、base64三选一
$bodys = "appId=". $appId . "&sign=" . $sign . "×tamp=" . $timestamp . "&productCode=business_license_ocr" . "&url=" . $url . "&base64=" . $base64 ;
$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/ocr/business-license"; 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 = ""; // 营业执照照片url 营业执照照片url,file、base64三选一 String base64 = ""; // 营业执照照片base64 营业执照照片url,file、base64三选一 String bodys = "appId=" + appId + "&sign=" + sign + "×tamp=" + timestamp + "&productCode=business_license_ocr" + "&url=" + url + "&base64=" + base64 ; 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/ocr/business-license";
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 = ""; // 营业执照照片url 营业执照照片url,file、base64三选一
String base64 = ""; // 营业执照照片base64 营业执照照片url,file、base64三选一
String bodys = "appId=" + appId + "&sign=" + sign + "×tamp=" + timestamp + "&productCode=business_license_ocr" + "&url=" + url + "&base64=" + base64 ;
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/ocr/business-license";
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 = ""; // 营业执照照片url 营业执照照片url,file、base64三选一
String base64 = ""; // 营业执照照片base64 营业执照照片url,file、base64三选一
String bodys = "appId=" + appId + "&sign=" + sign + "×tamp=" + timestamp + "&productCode=business_license_ocr" + "&url=" + url + "&base64=" + base64 ;
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/ocr/business-license" 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']='business_license_ocr' // 固定值 bodys['url'] = '' // 营业执照照片url 营业执照照片url,file、base64三选一 bodys['base64'] = '' // 营业执照照片base64 营业执照照片url,file、base64三选一 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/ocr/business-license"
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']='business_license_ocr' // 固定值
bodys['url'] = '' // 营业执照照片url 营业执照照片url,file、base64三选一
bodys['base64'] = '' // 营业执照照片base64 营业执照照片url,file、base64三选一
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/ocr/business-license"
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']='business_license_ocr' // 固定值
bodys['url'] = '' // 营业执照照片url 营业执照照片url,file、base64三选一
bodys['base64'] = '' // 营业执照照片base64 营业执照照片url,file、base64三选一
headers = {
'Content-Type': 'application/x-www-form-urlencoded; charset=UTF-8'
}
response = requests.post(url, data = bodys, headers = headers)
print (response.text)