为什么要进行实名认证?互联网时代,网民在网上进行遨游的过程中,我们无法辨别其身份的真伪,网民财产安全没有保障,因此当平台用户在进行注册时,都会要求提供身份证信息使用实名认证接口来判断身份信息的真实性。
身份证二要素、三要素核验实名认证接口是现在大多数线上平台会用到的接口类型。通过身份证号、姓名、证件头像以及现场人像核验用户提供身份信息的真伪。
翔云身份证实名认证接口返回值参数说明:
基于C#语言的调用方法如下:
var client = new HttpClient();
var request = new HttpRequestMessage(HttpMethod.Post, "https://netocr.com/verapi/veriden.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("3003"), "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());