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":"/xH1yFrGZ33iK9cm2gqywYhujZ7.jpg","genre_ids":[10770,35],"id":754228,"original_language":"bn","original_title":"Hey Bhogoban","overview":"Hey Bhogoban is a Bengali comedy movie starring Saurav Das, Rupsha Chakraborty, and Arindam Ganguly. The film revolves around Simpi, a young woman, who nurses a grudge against God after losing her parents in her childhood. However, despite being an atheist, she resorts to performing Pujas as means to earn her livelihood. To turn Simpi into a believer, Krishna, the chief among gods, sends his assistant Madan, the god of love. What transpires next is a hilarious chain of events that help a God and a human being bond and find new meaning to their existence.","popularity":1.123,"poster_path":"/elPGJEn2SxmzduSWsGq1zGZc8qV.jpg","release_date":"2019-12-14","title":"Hey Bhogoban","video":false,"vote_average":0.0,"vote_count":0,"character":"Raja","credit_id":"641c0668a3e4ba00be4c7581","order":0,"media_type":"movie"},{"adult":false,"backdrop_path":"/yOMEFfUGPEI774wO9DzvFGyy6fy.jpg","genre_ids":[10749,36],"id":713037,"original_language":"bn","original_title":"গোলন্দাজ","overview":"Based on true events, Nagendra Prasad Sarbadhikari, \"The Father of Indian Football\", was the first Indian to play the sport and open a professional football club in the country.","popularity":0.759,"poster_path":"/nFa4Utyaic4Y1Y2tUntq75dolKn.jpg","release_date":"2021-10-10","title":"Golondaaj","video":false,"vote_average":5.0,"vote_count":1,"character":"Dukhiram","credit_id":"61b32a27e894a60041106684","order":7,"media_type":"movie"},{"adult":false,"backdrop_path":"/lY1kvhZALB91thMoVAhgsULmFBv.jpg","genre_ids":[12,35,10751,14,10749,9648],"id":921662,"original_language":"bn","original_title":"কর্ণসুবর্ণের গুপ্তধন","overview":"The third film in the Sona Da Franchise. Watch how a blissful vacation turns into a quest of one of the greatest treasures that Bengal has ever known.","popularity":1.945,"poster_path":"/8T2lOstnWmfYg4NWOFWFguTn8uv.jpg","release_date":"2022-09-30","title":"Karnasubarner Guptodhon","video":false,"vote_average":7.5,"vote_count":1,"character":"","credit_id":"639cefa32d531a00b0dd81f3","order":16,"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'] ?? [];