App\Core\Tmdb\TmdbClient->send():108 PHP 8.2.25

Tmdb Client Error: {"success":false,"status_code":11,"status_message":"Internal error: Something went wrong, contact TMDb.","combined_credits":{"cast":[{"adult":false,"backdrop_path":"/i9cxl3W6N2lpQE3EBVpBW6iKYHg.jpg","genre_ids":[18,36,10749],"id":34220,"original_language":"it","original_title":"Viola di Mare","overview":"Nothing - not her father, not the church - can stop unruly Angela from being with her childhood best friend turned great love, Sara. Based on a true story, Viola di Mare, presents a uniquely engaging portrait of family, community and gender roles in a 19th century Italian village.","popularity":4.024,"poster_path":"/rU5fHzO1WqjZlJp6A5CWJDF96Rg.jpg","release_date":"2009-10-15","title":"The Purple Sea","video":false,"vote_average":6.6,"vote_count":81,"character":"Concetta","credit_id":"52fe455c9251416c9102fae9","order":10,"media_type":"movie"},{"adult":false,"backdrop_path":"/z2ZQeQFphVBV6jJNcApJGtv1GoJ.jpg","genre_ids":[35,14],"id":583029,"original_language":"it","original_title":"Momenti di trascurabile felicità","overview":"Died in a car crash, Paolo is allowed to come back to life for 92 minutes more, thanks to a miscalculation made by Heavenly accountants. He decides to use this newfound time on Earth to fix his mistakes as a father and husband.","popularity":4.33,"poster_path":"/uqYPDfYz92p6oj3fcbYaEMcGGjy.jpg","release_date":"2019-03-14","title":"Ordinary Happiness","video":false,"vote_average":6.1,"vote_count":265,"character":"Conference lady","credit_id":"621047d9396e97006a8c1aa8","order":25,"media_type":"movie"},{"adult":false,"backdrop_path":"/6fS4M4EfxzhYkPKxHv4muzH1QMq.jpg","genre_ids":[18,80,36],"id":57465,"original_language":"it","original_title":"Alla luce del sole","overview":"In 1990s Palermo, Pino Puglisi is a priest from the neglected Brancaccio neighborhood dedicated in helping kids to get off the streets and creating an embracing place of hope and solidarity in his church, which means trouble for the local Mafia. He continues his solitary fight until the bitter end.","popularity":3.937,"poster_path":"/ws3oLwKKXHcUmhsP8WlaWosn6YP.jpg","release_date":"2005-01-21","title":"Come Into the Light","video":false,"vote_average":7.2,"vote_count":88,"character":"","credit_id":"6213915fc9044c0042afa697","order":6,"media_type":"movie"}],"crew":[]}}

/home/movtv/public_html/app/Core/Tmdb/TmdbClient.php:108

                                    
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'] ?? [];