I’m trying to make a request to the REST API for checking a video conversion request status.
I’m using Axios the make a GET request to https://api.uploadcare.com/convert/video/status/${token}
, using the following headers:
Authorization: `Uploadcare.Simple ${UPLOADCARE_KEY}:${UPLOADCARE_SECRET}`,
Accept: "application/vnd.uploadcare-v0.5+json",
When I do a POST request to convert the file it works, but when doing this GET request it returns a CORS error.
I looked at the API docs and could not find a solution. any Ideas?