Using this URL and getting a successful response, after adding a language however I get this response:
Any idea what I'm doing wrong?
Não consegue encontrar um certo filme ou série? Inicie sessão e adicione-o.
Deseja classificar ou adicionar este item a uma lista?
Ainda não é um membro?
Resposta de tawmae
em 23 maio 2024 às 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 errorResposta de Travis Bell
em 23 maio 2024 às 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.
Resposta de tawmae
em 23 maio 2024 às 11:09 AM
I knew it was a dumb reason, thanks a lot!