Hey there, Is it possible to get all the top rated movies of an actor based on his ID?
thanks
فیلم و نمایش تلویزیونی را نمیتوانید پیدا کنید؟ به سیستم وارد شوید تا آن را ایجاد کنید.
آیا میخواهید به این مورد امتیاز دهید یا به فهرست اضافه کنید؟
عضو نیستید؟
پاسخ توسط codenametyler
در تاریخ فوریه 8, 2019 ساعت 6:57 ق.ض
correct me if am wrong, we can use the filters in movie discovery to achieve it. https://developers.themoviedb.org/3/discover/movie-discover
پاسخ توسط Travis Bell
در تاریخ فوریه 8, 2019 ساعت 3:57 ب.ض
Hi @codenametyler,
Yes, you can use /discover. You'll want to look at using the
with_people
filter. Looking at Brad Pitt as an example:پاسخ توسط codenametyler
در تاریخ فوریه 11, 2019 ساعت 12:52 ق.ض
Hello @travisbell ,
that exactly what i did, with an autocomplete to get the peopleID. XD
Cheers
پاسخ توسط msheliga1
در تاریخ دسامبر 22, 2023 ساعت 4:25 ب.ض
This works similary for "with_people" and for "with_keywords" - in both case you must use the numerical ID of the person/keyword. This is true even though the API reference for Discover->Movie, for example, states that these values are strings. I tried with_keywords using both words (such as "Batman") and out of range numbers (such as "2"), but the first page of roughly 832,000 results were returned. Only when using a valid keyword ID (such as 4344 for "musical") will this work.
پاسخ توسط Travis Bell
در تاریخ دسامبر 22, 2023 ساعت 4:48 ب.ض
The docs state strings because values like "9663|9748" and "9663,9748" are valid in order to issue an
OR
orAND
query.