Tmdb Client Error: {"success":false,"status_code":11,"status_message":"Internal error: Something went wrong, contact TMDb.","combined_credits":{"cast":[{"adult":false,"backdrop_path":"/zi5B3468QjH6jM7D8gQYzPgvMQZ.jpg","genre_ids":[10767,35],"id":131659,"origin_country":["KR"],"original_language":"ko","original_name":"제시의 쇼!터뷰","overview":"Jessi is a Korean-American rapper and singer who brings a new style of talk show to South Korea. She is cheerful, straightforward, bold and witty with the hottest singers, actors and personalities in the industry. Jessi conducts an unpredictable and unstoppable interview from the very beginning. The chemistry between MC Jessi and the guests begins!","popularity":61.485,"poster_path":"/a6tuPYL7d1u0zQnxlR9lhqKfaAH.jpg","first_air_date":"2020-06-11","name":"Show!terview with Jessi","vote_average":7.0,"vote_count":2,"character":"Self","credit_id":"6120b0272dc44e005c68d141","episode_count":1,"media_type":"tv"},{"adult":false,"backdrop_path":"/nQoB7drAUzVdm4xgua6NXjZQIlr.jpg","genre_ids":[10764,35],"id":236729,"origin_country":["KR"],"original_language":"ko","original_name":"에이리언 호휘효","overview":"Three ambitious men set up a hip-hop label \"Alien HHH\" . Against all odds, their too unbelievable tobe","popularity":3.681,"poster_path":"/w4HawpjDGZHN3WtgINAl5Z2HLFW.jpg","first_air_date":"2023-08-16","name":"Alien HHH","vote_average":0.0,"vote_count":0,"character":"Self","credit_id":"6523ad2eea84c700aeef0fa6","episode_count":16,"media_type":"tv"},{"adult":false,"backdrop_path":"/5dwnr31zfJhxB7aA9jBqQFQPxdl.jpg","genre_ids":[10764],"id":273259,"origin_country":["KR"],"original_language":"ko","original_name":"랩:퍼블릭","overview":"RAP:PUBLIC (랩:퍼블릭) is a South Korean rap competition produced by Mnet with 60 contestants.\n\nA real hip-hop survival show where players engage in a strategic survival competition using 'rap' as their weapon.","popularity":15.005,"poster_path":"/lrQALt03MmIIuQhwxKRRKFTeQpi.jpg","first_air_date":"2024-10-02","name":"RAP:PUBLIC","vote_average":0.0,"vote_count":0,"character":"","credit_id":"67031306c3c5b3a1a8f7f297","episode_count":12,"media_type":"tv"}],"crew":[{"adult":false,"backdrop_path":"/7ub1xwDvrFuF3WQlsEQvYAQpm8Y.jpg","genre_ids":[18],"id":227192,"origin_country":["KR"],"original_language":"ko","original_name":"피라미드 게임","overview":"Every last Thursday of the month at an all-girls high school, the students of Class 2–5 cast their votes in a popularity poll. The results classify them into Grades A, B, C, D, and F. If they fall into Grade F, they become legitimate victims of school violence.","popularity":90.56,"poster_path":"/pBUERwWNCuO36CPxiVFsoQCPu7W.jpg","first_air_date":"2024-02-29","name":"Pyramid Game","vote_average":8.2,"vote_count":92,"credit_id":"66140750a6a4c10162bcd29e","department":"Sound","episode_count":10,"job":"Music Director","media_type":"tv"}]}}
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'] ?? [];