How to get acting list from actor's details? what is the api link for "Known for " and " Acting"? https://www.themoviedb.org/person/82809-annabelle-wallis
لم تجد الفلم أو المسلسل ؟ سجل دخولك و انشئها
هل تريد تقييم او اضافة هذا العنصر للقائمة؟
لست عضو؟
رد بواسطة Travis Bell
بتاريخ أكتوبر 28, 2014 في 11:11 صباحا
Hi Ramkumar,
If you're interested in all of their credits (TV included) use the
combined_credits
method.You can call
movie_credits
ortv_credits
if you're only interested in one of those:There is no dedicated method for this as technically speaking, you're able to generate this if you're looking at it from the person side of things. All we're doing is taking the
/combined_credits
method, uniquing the movie and TV fields by id and then joining them. Next, sort by vote_count and grab the first X that you're interested in.Cheers.
رد بواسطة Ramkumar
بتاريخ أكتوبر 28, 2014 في 11:20 صباحا
thank you so much..