اختصارات لوحة المفاتيح
البحث المتقدم
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
بتاريخ مايو 23, 2024 في 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 errorرد بواسطة Travis Bell
بتاريخ مايو 23, 2024 في 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
بتاريخ مايو 23, 2024 في 11:09 صباحا
I knew it was a dumb reason, thanks a lot!