Accessing data for multiple days from weather api
I have the program working where it displays the data for the current day but I not to sure how to get the weather data for the following days. Do I have to first send the json results to an array and cycle through?
6 Replies
Like where I add adding the icon [weather][0]
do I have to use a loop to go through the index
You probably need to call a different API endpoint
See the docs here https://openweathermap.org/api
Weather API
Explore OpenWeather's vast range of weather APIs including the versatile One Call API 3.0. Ideal for both
beginners and professionals, our APIs offer current weather, minute-by-minute forecasts, historical data archives, and
future predictions. Access weather data starting from 01-01-1979, global weather maps, solar irradiance predictions, air
p...
api.openweathermap.org/data/2.5/forecast?lat={lat}&lon={lon}&appid={API key}
Ye i had to use this one instead
Also remove the API key from your message and keep it private
Here are some additional pointers:
1. Move the API key out of your code entirely, load it from a local configuration file. Make sure that the configuration file is not tracked by a versioning system (so if you are using git, add it to .gitignore)
2. Don't initialize
HttpClient
repeatedly. This is especially bad with this type.
3. Always return early if you can (google "c# return early" if you don't know what I mean)
4. You were checking whether the HttpClient
was null
right after creating it (so it should never be null, the condition is useless)
5. Ideally you should replace JObject
with something else
6. You forgot to dispose the object in response
variable
How to deserialize JSON in C# - .NET
Learn how to use the System.Text.Json namespace to deserialize from JSON in .NET. Includes sample code.
@[ECH]JamHighlight I deleted the message with your code, you leaked your api key. I recommend you rotate it.