undefinedbr / safe

projeto prototipo
1 stars 1 forks source link

Consulta PLACA #14

Open LucasHenriqueAbreu opened 7 years ago

LucasHenriqueAbreu commented 7 years ago

Criar no servidor requisição a um WEBService, que busque os dados de um veículo a partir de sua placa.

webservice: https://www.veiculoroubado.com.br/webservice/veiculo?fonte=detran&tipo=placa&valor=NGH5928&token

token de acesso 80f28c4e954eb0cde2c83d71d8be63bb34caeab6

Os códigos de retorno da consulta são: 1 - Sucesso na Consulta 2 - Informar Todos os Parametros 3 - O Token é inválido 4 - Tipo não permitido 5 - Servidor não autorizado

Alejoiss commented 7 years ago

// get walking directions from central park to the empire state building var http = require("https"); url = "https://www.veiculoroubado.com.br/webservice/veiculo?fonte=detran&tipo=placa&valor=NGH5928&token=80f28c4e954eb0cde2c83d71d8be63bb34caeab6";

// get is a simple wrapper for request() // which sets the http method to GET var request = http.get(url, function (response) { // data is streamed in chunks from the server // so we have to handle the "data" event
var buffer = "", data, route;

response.on("data", function (chunk) {
    buffer += chunk;
}); 

response.on("end", function (err) {
    // finished transferring data
    // dump the raw data
    console.log(buffer);
}); 

});

LucasHenriqueAbreu commented 7 years ago

Ta foda, não funciona nada... HAHAHAH