Using this URL and getting a successful response, after adding a language however I get this response:
Any idea what I'm doing wrong?
Nu găsiți un film sau un serial? Autentificați-vă pentru a-l crea.
Doriți să evaluați sau să adăugați acest articol într-o listă?
Nu sunteți membru?
Răspuns de tawmae
pe data de 23 mai 2024 la ora 10:19 AM
For whatever reason it wouldn't let me add the URLs..
https: // api.themoviedb. org/3/collection/1733?api_key=d0d[redacted]
-> works finehttps: // api.themoviedb. org/3/collection/1733?api_key=d0d[redacted]?language=en-US
throws invalid key errorRăspuns de Travis Bell
pe data de 23 mai 2024 la ora 11:06 AM
As is standard for HTTP, you don't use
?
to add parameters, you use an&
.Would be what you're looking for.
Răspuns de tawmae
pe data de 23 mai 2024 la ora 11:09 AM
I knew it was a dumb reason, thanks a lot!