You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The API of openweathermap.org seems to have a problem with the URL encoding of the '.' as '%2E' in the following: curl 'http://api.openweathermap.org/data/2.5/weather?lat=43%2E5200&lon=5%2E45000&units=metric&appid=KEY'
But this invocation works: curl 'http://api.openweathermap.org/data/2.5/weather?lat=43.5200&lon=5.45000&units=metric&appid=KEY'
Solution: add a parameter in the config.ini of a service to deactivate the url-encoding of the parameters.
The text was updated successfully, but these errors were encountered:
The API of openweathermap.org seems to have a problem with the URL encoding of the '.' as '%2E' in the following:
curl 'http://api.openweathermap.org/data/2.5/weather?lat=43%2E5200&lon=5%2E45000&units=metric&appid=KEY'
But this invocation works:
curl 'http://api.openweathermap.org/data/2.5/weather?lat=43.5200&lon=5.45000&units=metric&appid=KEY'
Solution: add a parameter in the config.ini of a service to deactivate the url-encoding of the parameters.
The text was updated successfully, but these errors were encountered: