键盘快捷键
高级搜索
Using this URL and getting a successful response, after adding a language however I get this response:
Any idea what I'm doing wrong?
For whatever reason it wouldn't let me add the URLs..
https: // api.themoviedb. org/3/collection/1733?api_key=d0d[redacted] -> works fine
https: // api.themoviedb. org/3/collection/1733?api_key=d0d[redacted]
https: // api.themoviedb. org/3/collection/1733?api_key=d0d[redacted]?language=en-US throws invalid key error
https: // api.themoviedb. org/3/collection/1733?api_key=d0d[redacted]?language=en-US
As is standard for HTTP, you don't use ? to add parameters, you use an &.
?
&
https://api.themoviedb.org/3/collection/1733?api_key=d0d[redacted]&language=en-US
Would be what you're looking for.
I knew it was a dumb reason, thanks a lot!
找不到电影或节目?登录并创建它吧。
登录
注册
想给这个条目评分或将其添加到片单中?
还不是会员?
注册加入社区
tawmae 的回复
于 2024 年 05 月 23 日 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 errorTravis Bell 的回复
于 2024 年 05 月 23 日 11:06上午
As is standard for HTTP, you don't use
?
to add parameters, you use an&
.Would be what you're looking for.
tawmae 的回复
于 2024 年 05 月 23 日 11:09上午
I knew it was a dumb reason, thanks a lot!