C#语言标准版身份证号实名认证接口代码调用:

翔云身份证号实名认证API,以科技赋能社会管理、提升企业服务质量,维护公民合法权益、促进数字经济健康发展。未来,翔云(https://www.netocr.com)平台也将为有需要的企业提供更加广泛的实名认证接口应用场景,为构建更加安全、公正、透明的数字化社会贡献力量。
C#语言版身份证号实名认证接口代码调用:


	 var client = new HttpClient();
	 var request = new HttpRequestMessage(HttpMethod.Post, "https://netocr.com/api/recogliu.do");
	 var content = new MultipartFormDataContent();
	 content.Add(new StringContent("真实姓名"), "trueName");
	 content.Add(new StringContent("身份证号"), "idenNo");
	 content.Add(new StringContent("M***********g"), "key");
	 content.Add(new StringContent("3***********6"), "secret");
	 content.Add(new StringContent("3009"), "typeId");
	 content.Add(new StringContent("json"), "format");
	 request.Content = content;
	 var response = await client.SendAsync(request);
	 response.EnsureSuccessStatusCode();
	 Console.WriteLine(await response.Content.ReadAsStringAsync());
	

你可能感兴趣的:(api,c#,开发语言)