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
תגובה מאת 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.