FreakyF / Weather-track

A simple real-time weather tracking app with graphical user interface written in java.
MIT License
0 stars 0 forks source link

Implementing Weather Data Provider API Integration #6

Closed Tymisko closed 1 year ago

Tymisko commented 1 year ago

To retrieve weather data for our console application, we need to implement the integration with our chosen weather data provider's API. This involves designing and coding the parts of our application that communicate with the API, retrieve data, and handle any possible errors.

Here are the tasks we need to complete for this issue:

Acceptance Criteria:

  1. Our application can successfully retrieve and parse weather data from the chosen provider's API.
  2. Errors are properly handled and do not crash the application. The user is informed when the weather data cannot be retrieved.
  3. Tests confirm the correctness of the API integration and its resilience to common failure scenarios.
  4. The implemented functionality is documented so that other team members can understand how to use it.
  5. Name should contain a specific API name to explicitly inform that it is used.
Tymisko commented 1 year ago

We found this issue to be too huge as it is. We separated this issue into two new ones -> #36 & #37.