nasa / apod-api

Astronomy Picture of the Day API service
Apache License 2.0
833 stars 162 forks source link

Internal Server Error for picture 2020-09-12 when thumbs=true #59

Closed dsvdmeer closed 3 years ago

dsvdmeer commented 3 years ago

The following request is producing an Internal Server Error:

Request: https://api.nasa.gov/planetary/apod?thumbs=true&date=2020-09-12&api_key=DEMO_KEY

Result: {"code":500,"msg":"Internal Service Error","service_version":"v1"}

Removing the 'thumbs=true' query parameter solves it, so it probably has something to do with getting the video thumbnail. In this case it is a Vimeo video. Getting a range of pictures with 2020-09-12 included will also result in the same error.

dsvdmeer commented 3 years ago

I've narrowed this down to incorrect usage of urllib3 API. See #60 for the fix.