Hey! For curl access a binary, I’d recommend using `curl -L [URL]` if the URL redirects. Sometimes the redirect messes up the file type.
Also, if you’re on macOS or Linux, you can pipe the output to `file` to check the type:
`curl [URL] | file -`
This’ll tell you if it’s actually binary or not.
Also, if you’re on macOS or Linux, you can pipe the output to `file` to check the type:
`curl [URL] | file -`
This’ll tell you if it’s actually binary or not.
