You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Estou tentando receber os dados usando latitude e longitude, mas me retorna uma cidade muito longe da minha.
Latitude e longitude testados: -21.1248664,-41.671004
Estou usando a linguagem dart e minha classe eh essa:
class CepViaLatitude {
static Future fetchCep({String lat, String lng}) async {
var headers = {'Authorization': 'Token token=5ead8f2681f26e822b9bfced57463340'};
final response = await http.get('https://www.cepaberto.com/api/v3/nearest?lat='+lat+'&lng='+lng, headers: headers);
if (response.statusCode == 200) {
return CepResult.fromJson(response.body);
} else {
throw Exception('Requisição inválida!'+ response.statusCode.toString());
}
}
}
O resultado está dizendo que estou em Niteroi, mas seria Bom Jesus do Itabapoana que fica a uns 500km de Niteroi.
Não sei se a url está correta mas observando as outras linguagens e exemplos me parece esta correta.
The text was updated successfully, but these errors were encountered:
Estou tentando receber os dados usando latitude e longitude, mas me retorna uma cidade muito longe da minha.
Latitude e longitude testados: -21.1248664,-41.671004
Estou usando a linguagem dart e minha classe eh essa:
class CepViaLatitude {
static Future fetchCep({String lat, String lng}) async {
var headers = {'Authorization': 'Token token=5ead8f2681f26e822b9bfced57463340'};
final response = await http.get('https://www.cepaberto.com/api/v3/nearest?lat='+lat+'&lng='+lng, headers: headers);
if (response.statusCode == 200) {
return CepResult.fromJson(response.body);
} else {
throw Exception('Requisição inválida!'+ response.statusCode.toString());
}
}
}
O resultado está dizendo que estou em Niteroi, mas seria Bom Jesus do Itabapoana que fica a uns 500km de Niteroi.
Não sei se a url está correta mas observando as outras linguagens e exemplos me parece esta correta.
The text was updated successfully, but these errors were encountered: