Tmdb Client Error: {"success":false,"status_code":11,"status_message":"Internal error: Something went wrong, contact TMDb.","combined_credits":{"cast":[{"adult":false,"backdrop_path":"/auPhV7cBaQH1j0kj4qd1VDe6rCE.jpg","genre_ids":[35,18,10749],"id":11191,"original_language":"en","original_title":"Mystic Pizza","overview":"Three teenage girls come of age while working at a pizza parlor in Mystic, Connecticut.","popularity":11.508,"poster_path":"/bV3MvnUTgKlbGi7K1QaYNLhdOlM.jpg","release_date":"1988-10-13","title":"Mystic Pizza","video":false,"vote_average":6.3,"vote_count":505,"character":"Serena","credit_id":"5a36886fc3a36814ae05100e","order":14,"media_type":"movie"}],"crew":[{"adult":false,"backdrop_path":"/gnDnYYaLIMcv4jjJD4dDAsIMAjt.jpg","genre_ids":[35,53,27,14],"id":624774,"original_language":"en","original_title":"Butt Boy","overview":"Detective Fox loves work and alcohol. After he goes to AA, his sponsor, Chip, becomes a suspect in his investigation for a missing kid. Fox believes people are disappearing up Chip’s butt.","popularity":11.817,"poster_path":"/3CFazTqK7A05D1Cjtc7TPKR0naw.jpg","release_date":"2020-08-19","title":"Butt Boy","video":false,"vote_average":5.2,"vote_count":44,"credit_id":"5f2812fdc8a5ac0035f904e8","department":"Art","job":"Art Direction","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'] ?? [];