ryuphi / astrology-api

Astrology API Rest
GNU Affero General Public License v3.0
132 stars 47 forks source link

http://localhost:3000/horoscope?time=1895-05-12 00:30:00 05:00&latitude=13.5503&longitude=78.50288 is error #10

Closed rajna closed 3 years ago

ryuphi commented 3 years ago

Hi @rajna ! I recommend using the ISO8601 format (example 2020-04-16T01:06:54+05:00) and you should escape the + sign to avoid problems with positive time offsets, example +05:00 should be %2B05:00. Maybe over the weekend or tomorrow I will fix these.

Your url can be: https://dev-astrology-api.herokuapp.com/horoscope?time=1895-05-12T00:30:00%2B05:00&latitude=13.5503&longitude=78.50288

Also you can use time in UTC: https://dev-astrology-api.herokuapp.com/horoscope?time=1895-05-11T19:30:00Z&latitude=13.5503&longitude=78.50288

Thanks for reporting!