护照查验是对护照有效性、真实性和符合相关出入境要求的确认过程。护照作为跨国旅行的重要身份证明文件,其查验是国际旅行中的一个必要程序。护照查验接口,支持查验出入境管理局签发护照的真伪,接口集成,简单高效便捷。
C#护照查验接口集成示例:
var client = new HttpClient();
var request = new HttpRequestMessage(HttpMethod.Post, "https://netocr.com/verapi/verResidencePermit.do");
var content = new MultipartFormDataContent();
content.Add(new StringContent("Mg"), "key");
content.Add(new StringContent("36"), "secret");
content.Add(new StringContent("3034"), "typeId");
content.Add(new StringContent("陈"), "trueName");
content.Add(new StringContent("G*0032302"), "idenNo");
content.Add(new StringContent("0"), "mode");
content.Add(new StringContent("GBR"), "nation");
request.Content = content;
var response = await client.SendAsync(request);
response.EnsureSuccessStatusCode();
Console.WriteLine(await response.Content.ReadAsStringAsync());
护照识别一般可以采用接口集成的方式来实现,也可以采用护照私有云部署的方式,可以更好的协助护照查验接口查验护照的真伪,提高行业的工作效率,提升用户体验。
护照查验接口、护照识别接口现已被广泛应用于国内出入境管理、国内旅游等场景,集成前可在线体验。
标签:查验,示例,C#,护照,StringContent,content,Add,new From: https://www.cnblogs.com/netocr/p/18386467