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":"/pMc6BhRyGXiwNMD2bbdrBvxCMS5.jpg","genre_ids":[12,18],"id":517402,"original_language":"af","original_title":"Stroomop","overview":"A support group travels to the Orange River. A doctor, 2 moms, a daughter and a suicidal woman leave for their \"veldskool\" trip. Many trials, tribulations and truths are revealed as they go on this epic adventure.","popularity":3.566,"poster_path":"/t0HvM2EhEyBXAROjuPZpa07XVF1.jpg","release_date":"2018-08-09","title":"Stroomop","video":false,"vote_average":6.0,"vote_count":10,"character":"","credit_id":"614c509fc7176d0066bedbb4","order":15,"media_type":"movie"},{"adult":false,"backdrop_path":"/q3pD0oLk1PF5EFqcAsK2fYagHwj.jpg","genre_ids":[80,18],"id":15102,"original_language":"en","original_title":"Endgame","overview":"The time is the late '80s, a crucial period in the history of South Africa. President P.W. Botha is hanging on to power by a thread as the African National Congress (ANC) takes up arms against apartheid and the country tumbles toward insurrection. A British mining concern is convinced that their interests would be better served in a stable South Africa and they quietly dispatch Michael Young, their head of public affairs, to open an unofficial dialogue between the bitter rivals. Assembling a reluctant yet brilliant team to pave the way to reconciliation by confronting obstacles that initially seem insurmountable, Young places his trust in ANC leader Thabo Mbeki and Afrikaner philosophy professor Willie Esterhuyse. It is their empathy that will ultimately serve as the catalyst for change by proving more powerful than the terrorist bombs that threaten to disrupt the peaceful dialogue.","popularity":5.788,"poster_path":"/b8WzwCABwVRVdw14OcE6pmezJjK.jpg","release_date":"2009-01-18","title":"Endgame","video":false,"vote_average":5.8,"vote_count":47,"character":"Zambian Newscaster","credit_id":"66929a82eb2dce93c26e51ba","order":30,"media_type":"movie"},{"adult":false,"backdrop_path":null,"genre_ids":[10764],"id":99404,"origin_country":[],"original_language":"en","original_name":"First Dates South Africa","overview":"With the cool, calm and collected Maître d' Batsile, charming bartender Travis and hilarious waiting trio, Ash, Joey and Tamara now confirmed, this group work together to create the ultimate dating environment for 120 people as they step through the First Dates restaurant doors looking for love.","popularity":2.261,"poster_path":null,"first_air_date":"2019-10-16","name":"First Dates South Africa","vote_average":0.0,"vote_count":0,"character":"Maître D’","credit_id":"5e46f4ca0c2710001386c7a7","episode_count":10,"media_type":"tv"}],"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'] ?? [];