Tmdb Client Error: {"success":false,"status_code":11,"status_message":"Internal error: Something went wrong, contact TMDb.","combined_credits":{"cast":[{"adult":false,"backdrop_path":"/aYy86BruAEGJoYWAYCgmUS8XRm1.jpg","genre_ids":[18],"id":115365,"original_language":"en","original_title":"Loving the Bad Man","overview":"Julie Thompson, a young conservative Christian woman, is truly tested by God and gives birth to a child conceived in rape. This decision leads her on a journey that forces her to explore and redefine her relationships with God, her family, friends and even her rapist Mike Connor, as she struggles to forgive the man who violated her by boldly visiting him in prison and forging an unlikely bond.","popularity":0.957,"poster_path":"/iHV21S7ntn1cajA4DO0DWPERfqN.jpg","release_date":"2012-07-10","title":"Loving the Bad Man","video":false,"vote_average":5.6,"vote_count":9,"character":"Customer #2","credit_id":"52fe4b69c3a36847f82027b1","order":1,"media_type":"movie"},{"adult":false,"backdrop_path":null,"genre_ids":[9648],"id":962951,"original_language":"en","original_title":"Rope Art","overview":"An ambitious assistant prosecuting attorney, his wife, and an audacious erotic performance artist, engage in a triangle of ambition, deceit, romance, that results in testing the boundries of Constitutional law.","popularity":0.2,"poster_path":null,"release_date":"2000-12-12","title":"Rope Art","video":false,"vote_average":0.0,"vote_count":0,"character":"","credit_id":"6261e012d1a89333681a8f04","order":9,"media_type":"movie"}],"crew":[]}}
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'] ?? [];