Skip to content

Latest commit

 

History

History
61 lines (45 loc) · 2.52 KB

File metadata and controls

61 lines (45 loc) · 2.52 KB

WeatherSpringApi

  1. EndPoint para crear un usuario ENDPOINT URL: http://localhost:8080/auth METHOD: POST JSON FORMAT: image SERVER RESPONSE image DATABASE LOG image

  2. EndPoint para loggear un usuario y generar un token. ENDPOINT URL: http://localhost:8080/auth/login METHOD: POST JSON FORMAT: image SERVER RESPONSE: image

  3. EndPoint para obtener la informacion del clima de una ciudad. ENDPOINT URL: http://localhost:8080/weather/current/{city} METHOD: GET JSON FORMAT:
    image SERVER RESPONSE: image DATABASE LOG: image

  4. EndPoint para obtener la prediccion del clima en 5 dias siguientes. ENDPOINT URL: http://localhost:8080/weather/{city} METHOD: GET JSON FORMAT: image SERVER RESPONSE: image DATABASE LOG: image

  5. EndPoint para obtener la calidad del aire de una ciudad ENDPOINT URL: http://localhost:8080/weather/air_pollution/{city} METHOD: GET JSON FORMAT: image SERVER RESPONSE: image DATABASE LOG: image

6. EndPoint para listar todas las consultas realizadas junto al usuario que las realizo