This issue is related with language=en-US parameter, with this parameter in url some API endpoints return not empty overview (and that's correct) but requests (also with language=en-US parameter) to similar endpoints like favorite-movies or watchlist-movies give us null overview which is incorrect.
To reproduce it:
1) Get movie details (request below returns not empty overview for given language - CORRECT
)
GET https://api.themoviedb.org/3/movie/550?api_key={{api_key}}&language=en-US
The same happens on the list of top-rated movies (ID: 550 - Fight Club is high on this list so it's easy to check it here)
GET https://api.themoviedb.org/3/movie/top_rated?api_key={{api_key}}&language=en-US
2) Add movie to favorites
POST https://api.themoviedb.org/3/account/{{account_id}}/favorite?api_key={{api_key}}&session_id={{session_id}}
{
"media_type": "movie",
"media_id": 550,
"favorite": true
}
3) Get list of favorites and search for movie with id 550 (overview will be empty - INCORRECT
)
GET https://api.themoviedb.org/3/account/{account_id}/favorite/movies?page=1&language=en-US&api_key={api_key}&session_id={session_id}
4) Get list of favorites without language=en-US parameter (it gives us not empty overview - CORRECT
)
GET https://api.themoviedb.org/3/account/{account_id}/favorite/movies?page=1&api_key={api_key}&session_id={session_id}
찾으시는 영화나 TV 프로그램이 없나요? 로그인 하셔서 직접 만들어주세요.
이 항목을 평가하거나 목록에 추가할까요?
회원이 아닌가요?
Travis Bell님의 댓글
6월 8, 2017 at 4:13 오후
Hi @mkskurski Thanks for the report. I've created a ticket for this for me to look at here.
Travis Bell님의 댓글
7월 24, 2018 at 12:33 오후
Just an update, this shouldn't be happening anymore. If you see it again, let me know.
kleisberg님의 댓글
3월 22, 2024 at 6:17 오전
I get the same error when I try to pull data from https://api.themoviedb.org/3/discover/movie.
Travis Bell님의 댓글
3월 22, 2024 at 10:19 오전
@kleisberg I'm fairly confident you are talking empty overview, while the original post here was talking about
null
overviews.In your case, yes, I am sure there are many movies without a Turkish overview, especially if you randomly selecting higher pages. This is normal, and expected since we don't have all items available in Turkish and our API does not fallback the overview field in any way.