in tv discover there is no variable which is called "cast_id" unlike movie discover so I don't know if "id" means the "cast_id".
and in movie discover is "id" the same as "cast_id".
There is no filter called cast_id in movie discover either, are you asking about with_cast? If so, that filter is expecting a list of people ID's. So as an example, if I wanted to see what movies Brad Pitt (287) and Edward Norton (819) have been in together, I could issue this query:
Travis Bell 的回复
于 2019 年 12 月 22 日 11:32上午
There is no filter called
cast_id
in movie discover either, are you asking aboutwith_cast
? If so, that filter is expecting a list of people ID's. So as an example, if I wanted to see what movies Brad Pitt (287) and Edward Norton (819) have been in together, I could issue this query:with_cast
is only searching cast credits. If I wanted to expand that out to all credits (crew as well) I could usewith_people
:Lastly, these are
AND
queries, so to turn them intoOR
, you could use a pipe (|):