Tmdb Client Error: {"success":false,"status_code":11,"status_message":"Internal error: Something went wrong, contact TMDb.","combined_credits":{"cast":[{"adult":false,"backdrop_path":null,"genre_ids":[],"id":565883,"original_language":"fr","original_title":"Le divorcement","overview":"In this rambling comic tale about a man and a wife, with four children, who calmly announce to the children that they want to divorce one another, it is impossible to tell who is dissatisfied with whom about what. They had seemed to be a perfect couple. Their flabbergasted children have mixed feelings, and the most difficult thing about the divorce, besides understanding why it is taking place at all, is deciding what will happen with the couple's numerous pets.","popularity":0.913,"poster_path":"/6e9GjgfT1K0UopwVzMQjwD2h8yz.jpg","release_date":"1979-08-22","title":"Le divorcement","video":false,"vote_average":6.0,"vote_count":1,"character":"","credit_id":"65cf69c79ac5350162dfdfbc","order":17,"media_type":"movie"},{"adult":false,"backdrop_path":null,"genre_ids":[18],"id":513879,"original_language":"fr","original_title":"Démons de midi","overview":"At 45, divorced, unemployed and father of two children, Franois Morot realizes that he can no longer support the society in which he lives and decides to leave everything.","popularity":0.646,"poster_path":"/8AV01GHRdVRtuLNGUuQs9YNZI8a.jpg","release_date":"1979-11-28","title":"Démons de midi","video":false,"vote_average":0.0,"vote_count":0,"character":"La femme à Lyon","credit_id":"5ab774eac3a3680a2401a6ae","order":5,"media_type":"movie"}],"crew":[{"adult":false,"backdrop_path":"/21i0STBZUzhdNqJ2SpiBFpUGWZw.jpg","genre_ids":[35],"id":4180,"original_language":"fr","original_title":"3 Hommes et un couffin","overview":"Three young men - Jacques, Pierre, and Michel - share an apartment in Paris, and have many girlfriends and parties. Once, during a party, a friend of Jacques' tells him he has a quite compromising package to deliver, and asks him if he can leave it discreetly at their place. Jacques agrees and, as he works as a steward, flies away for a one-month trip in Japan, telling Pierre and Michel about the package. Then, one of Jacques' former girlfriends drops a baby before their door, making Pierre and Michel believing it is the package they are waiting for. Their lives are then completely changed.","popularity":7.332,"poster_path":"/3TfJL5jbyWFUOe1NB81iI8w7Gct.jpg","release_date":"1985-09-18","title":"Three Men and a Cradle","video":false,"vote_average":6.3,"vote_count":258,"credit_id":"608f185987ae7b0079b1ed84","department":"Costume \u0026 Make-Up","job":"Costume Design","media_type":"movie"}]}}
96 'Content-Type' => 'application/json;charset=utf-8',
97 'Authorization' => sprintf('Bearer %s', Configurator::$instance->get('tmdb'))
98 ];
99
100 // Append language preference to headers to avoid adult content
101 $headers['Accept-Language'] = 'en-US'; // Example: Set language preference to English
102
103 // Make the GET request with headers
104 $resp = EasyCurl::setHeaders($headers)->get(...$args);
105
106 // Check if response status is not 200 OK
107 if ($resp->getStatus() != 200) {
108 throw new TmdbClientException('Tmdb Client Error: ' . $resp->getBody(), $resp->getStatus());
109 }
110
111 // Check for adult content in response (assuming TMDB API supports such filtering)
112 $jsonResponse = json_decode($resp->getBody(), true);
113
114
115 return $resp;
116 }
117
118
119 public function getGenre(): array
120 {
121 return $this->request('genre/' . $this->getType() . '/list')['genres'] ?? [];