Is there a way to get list of movies for a selected actor/actress?? https://api.themoviedb.org/3/movie/?api_key=
فیلم و نمایش تلویزیونی را نمیتوانید پیدا کنید؟ به سیستم وارد شوید تا آن را ایجاد کنید.
آیا میخواهید به این مورد امتیاز دهید یا به فهرست اضافه کنید؟
عضو نیستید؟
پاسخ توسط superboy97
در تاریخ آوریل 12, 2025 ساعت 1:13 ق.ض
You need to use
پاسخ توسط robert3237
در تاریخ آوریل 12, 2025 ساعت 1:35 ق.ض
how to get {person_id}?? can i type in a combobox and return name and id???
پاسخ توسط superboy97
در تاریخ آوریل 12, 2025 ساعت 1:37 ق.ض
You should use this search method.
پاسخ توسط robert3237
در تاریخ آوریل 12, 2025 ساعت 1:50 ق.ض
i tried this and it return nothing:: this: {"status_code":7,"status_message":"Invalid API key: You must be granted a valid key.","success":false} https://api.themoviedb.org/3/search/person?query=Mark%20Wahlberg?api_key=<>
پاسخ توسط superboy97
در تاریخ آوریل 12, 2025 ساعت 1:52 ق.ض
You need to include your API key while calling the method.
پاسخ توسط robert3237
در تاریخ آوریل 12, 2025 ساعت 1:52 ق.ض
i have. just did not show it here!
پاسخ توسط superboy97
در تاریخ آوریل 12, 2025 ساعت 1:55 ق.ض
The error message indicate that you did not enter it correctly.
EDIT : I just see your error. You should use "&" between the parameters, "?" should only be used before the first parameter.
پاسخ توسط robert3237
در تاریخ آوریل 12, 2025 ساعت 1:59 ق.ض
appreciate your help!!! here is string: https://api.themoviedb.org/3/search/person?query=Mark%20Wahlberg&api_key=0c3840bfedc what i really need is either all movies he has been in, or retrieve entered actor/actress ID??? is there a way to enter name, and get ID. then i can use your previous answer. People - Movie Credits if you want just the movies People - TV Credits if you want just the TV series People - Combined credits if you want them all
thanks again!
پاسخ توسط superboy97
در تاریخ آوریل 12, 2025 ساعت 2:08 ق.ض
In the answer of that call, you will get the Id that you can use in the other methods.
پاسخ توسط robert3237
در تاریخ آوریل 12, 2025 ساعت 2:38 ق.ض
Thanks superboy97. here is string that returns the ID, and now it returns the movies (1) page only/?? Dim url As String = $"https://api.themoviedb.org/3/search/person?api_key={TMDBApiKey}&query={Uri.EscapeDataString(query)}"
پاسخ توسط superboy97
در تاریخ آوریل 12, 2025 ساعت 2:40 ق.ض
All is explained in the given documentation pages.