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":1138949,"original_language":"bn","original_title":"দাহ","overview":"The life of Padma, a woman who is sold into prostitution by her husband, becomes worse after she is raped by a gang of men on the night of his death of cancer. However, she decides to continue living for her handicapped son.","popularity":0.468,"poster_path":"/3KsFb6zxktwBjV5woaLnRsVySnP.jpg","release_date":"2012-06-01","title":"Daaha","video":false,"vote_average":0.0,"vote_count":0,"character":"","credit_id":"6485e3a3d2b20900ad3ce88c","order":6,"media_type":"movie"},{"adult":false,"backdrop_path":null,"genre_ids":[10749],"id":910919,"original_language":"bn","original_title":"অনু","overview":"Anu, a dreamy-eyed and middle-class girl, falls in love with Sugawto, a political activist, who is arrested. After his release Anu realizes that she is an entity to him. Will she leave indifferent Sugawto?","popularity":2.215,"poster_path":"/7R2VQymLX9hsY3UZBubJaoteFUD.jpg","release_date":"1998-11-05","title":"Anu","video":false,"vote_average":0.0,"vote_count":0,"character":"","credit_id":"6281eb120d5d8507051c2351","order":8,"media_type":"movie"},{"adult":false,"backdrop_path":null,"genre_ids":[],"id":1190223,"original_language":"bn","original_title":"Samapti","overview":"","popularity":0.803,"poster_path":null,"release_date":"1983-06-01","title":"Samapti","video":false,"vote_average":0.0,"vote_count":0,"character":"","credit_id":"6527b8a31f3e60011c48de11","order":4,"media_type":"movie"},{"adult":false,"backdrop_path":null,"genre_ids":[18,35],"id":719662,"original_language":"bn","original_title":"এক যে ছিল দেশ","overview":"A scientist accidentally finds a drug that can reveal an individual's past. However, when a few politicians fear their exposure, they plot to kill him.","popularity":0.62,"poster_path":"/mfDr3VcHlcpszlSZkfduqbBzdeS.jpg","release_date":"1977-07-29","title":"Ek Je Chhilo Desh","video":false,"vote_average":0.0,"vote_count":0,"character":"","credit_id":"5ef84d41d6d64d0034c4316f","order":10,"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'] ?? [];