πŸ“˜EJEMPLOS

Ejemplos

Eche un vistazo a cΓ³mo podrΓ­a llamar a este mΓ©todo utilizando diferentes lenguajes de programaciΓ³n, aquΓ­ hay unos ejemplos en diferente lenguajes.

var client = new HttpClient();
var request = new HttpRequestMessage(HttpMethod.Get, "https://api.factiliza.com/pe/v1/dni/info/27427864");
request.Headers.Add("Authorization", "Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiI3IiwiZW1haWwiOiJhbmdlbGl0b2FsZXgyMDBAZ21haWwuY29tIiwiaHR0cDovL3NjaGVtYXMubWljcm9zb2Z0LmNvbS93cy8yMDA4LzA2L2lkZW50aXR5L2NsYWltcy9yb2xlIjoiY29uc3VsdG9yIn0.w8DwLqSuge7pO_CjTKliZGoMUyKYs5W-ft0Lz3sowpE");
var response = await client.SendAsync(request);
response.EnsureSuccessStatusCode();
Console.WriteLine(await response.Content.ReadAsStringAsync());

Última actualización