"success": false,
"status_code": 34,
"status_message": "The resource you requested could not be found."
I have been using the url for fetching movies related different genres
https://api.themoviedb.org/3/discover/movie/?api_key={API_KEY}&language=en-US
fetchTrendingTVDay: `/trending/tv/day?api_key=${API_KEY}&language=en-US`,
fetchTrendingAll: `/trending/all/day?api_key=${API_KEY}&language=en-US`,
fetchNetFlixOriginals: `/discover/tv?api_key=${API_KEY}&with_networks=213`,
fetchHBO: `/discover/tv?api_key=${API_KEY}&with_networks=5666`,
fetchHBOMax: `/discover/tv?api_key=${API_KEY}&with_networks=5750`,
please let me know if anything is wrong with the URL's ?
.לא מצאת סרט או סדרה? היכנס כדי ליצור אותם
?רוצה לדרג או להוסיף פריט אל רשימה
?לא חבר אתר
תגובה מאת Developer2933
ב-יוני 25, 2024 ב-6:30לפני חצות יום
I have been using these URL's please let me know if there is any error ..
The movies are being Stored in the Object getting a 404 Error ...
תגובה מאת Travis Bell
ב-יוני 25, 2024 ב-2:03אחרי חצות יום
Hi @Developer2933,
First of all, this request:
Has a trailing slash which needs to be deleted:
For this request:
Without knowing what
param.Details
is, I would say that's probably your problem. As you can see here, as a test request, everything is working like it should: