赞
踩
在以前,企业采用人工审核的方式对线上用户进行身份信息真伪的核验,在用户上传身份信息后,人工进行后台审核,虽能满足企业对用户实名认证的需求,但效率慢、耗时长,且存在一定的人为误差,对高度PS身份证肉眼无法核实其真伪,早已无法满足当下企业的发展需求。
翔云身份证实名认证接口,实时联网核验身份的真伪,技术支持有保障,与此同时翔云平台还提供了身份证识别接口,以此来助力线上平台加强对用户信息的保护和管理,建立完善的用户信息安全制度,保障用户信息安全,提升用户注册体验。
基于身份证实名认证接口C#代码的开发示例如下:
var client = new HttpClient();
var request = new HttpRequestMessage(HttpMethod.Post, "https://netocr.com/verapi/veridenOrd.do");
var content = new MultipartFormDataContent();
content.Add(new StringContent("img"), "/9j");
content.Add(new StringContent("M***********g"), "key");
content.Add(new StringContent("3***********6"), "secret");
content.Add(new StringContent("3013"), "typeId");
content.Add(new StringContent("陈**"), "trueName");
content.Add(new StringContent("13***************3"), "idenNo");
content.Add(new StringContent("json"), "format");
request.Content = content;
var response = await client.SendAsync(request);
response.EnsureSuccessStatusCode();
Console.WriteLine(await response.Content.ReadAsStringAsync());
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。