Skip to content Skip to sidebar Skip to footer

Parse Data From Openweathermap, Using Retrofit2 And Rxjava2

I've started to learn Retrofit and RxJava, and I've decided to create weatherApp. Now my goal is to retrieve weather data from OpenWeatherMap Api. Here's my code: For api: package

Solution 1:

Your request is probably erroring out without you knowing about it as you ignore the onError method. Add e.printStackTrace() to that method to see if this is the case.


Post a Comment for "Parse Data From Openweathermap, Using Retrofit2 And Rxjava2"