Commit 97718904 authored by Karakas's avatar Karakas
Browse files

updated api key

parent b5da6936
...@@ -44,7 +44,7 @@ public class CurrentweatherApiController implements CurrentweatherApi { ...@@ -44,7 +44,7 @@ public class CurrentweatherApiController implements CurrentweatherApi {
ApiService apiService = new ApiService(restTemplate); ApiService apiService = new ApiService(restTemplate);
String data = apiService.getDataFromFirstApi( String data = apiService.getDataFromFirstApi(
"https://api.weatherapi.com/v1/current.json?key=1244099aeaee4b179e6111803241304&q=" + q "https://api.weatherapi.com/v1/current.json?key=afe1585243b94bec9d670336241206&q=" + q
+ "&aqi=yes"); + "&aqi=yes");
ResponseEntity<Model200> response = new ResponseEntity<Model200>(objectMapper.readValue( ResponseEntity<Model200> response = new ResponseEntity<Model200>(objectMapper.readValue(
......
...@@ -53,7 +53,7 @@ public class ForecastweatherApiController implements ForecastweatherApi { ...@@ -53,7 +53,7 @@ public class ForecastweatherApiController implements ForecastweatherApi {
ApiService apiService = new ApiService(restTemplate); ApiService apiService = new ApiService(restTemplate);
String data = apiService.getDataFromFirstApi( String data = apiService.getDataFromFirstApi(
"https://api.weatherapi.com/v1/forecast.json?key=1244099aeaee4b179e6111803241304&q=" + q "https://api.weatherapi.com/v1/forecast.json?key=afe1585243b94bec9d670336241206&q=" + q
+ "&days=" + days + "&aqi=yes&alerts=" + alerts); + "&days=" + days + "&aqi=yes&alerts=" + alerts);
ResponseEntity<Modelforecast> response = new ResponseEntity<Modelforecast>(objectMapper.readValue( ResponseEntity<Modelforecast> response = new ResponseEntity<Modelforecast>(objectMapper.readValue(
......
...@@ -44,7 +44,7 @@ public class SearchApiController implements SearchApi { ...@@ -44,7 +44,7 @@ public class SearchApiController implements SearchApi {
ApiService apiService = new ApiService(restTemplate); ApiService apiService = new ApiService(restTemplate);
String data = apiService.getDataFromFirstApi( String data = apiService.getDataFromFirstApi(
"http://api.weatherapi.com/v1/search.json?key=1244099aeaee4b179e6111803241304&q=" + city); "http://api.weatherapi.com/v1/search.json?key=afe1585243b94bec9d670336241206&q=" + city);
@SuppressWarnings("unchecked") @SuppressWarnings("unchecked")
ResponseEntity<List<Search>> response = new ResponseEntity<List<Search>>(objectMapper.readValue( ResponseEntity<List<Search>> response = new ResponseEntity<List<Search>>(objectMapper.readValue(
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment