Using this URL and getting a successful response, after adding a language however I get this response:
Any idea what I'm doing wrong?
¿No encuentras una película o serie? Inicia sesión para crearla:
¿Quieres puntuar o añadir este elemento a una lista?
¿No eres miembro?
Contestado por tawmae
el 23 de mayo de 2024 a las 10:19
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 errorContestado por Travis Bell
el 23 de mayo de 2024 a las 11:06
As is standard for HTTP, you don't use
?
to add parameters, you use an&
.Would be what you're looking for.
Contestado por tawmae
el 23 de mayo de 2024 a las 11:09
I knew it was a dumb reason, thanks a lot!