Hello. I installed the package and also bought proxy from dataimpuls.com . But still in production returns TranscriptsDisabledException. This is my code:
`use GuzzleHttp\Client;
use GuzzleHttp\RequestOptions;
use MrMySQL\YoutubeTranscript\TranscriptListFetcher;
$proxies = [
env('DI_PROXY1')
];
$http_client = new Client([
RequestOptions::PROXY => $proxies,
RequestOptions::VERIFY => false
]);
$request_factory = new HttpFactory();
$this->fetcher = new TranscriptListFetcher($http_client, $request_factory);
$transcript_list = $this->fetcher->fetch($videoId);`
Problem is in production.
Hello. I installed the package and also bought proxy from dataimpuls.com . But still in production returns TranscriptsDisabledException. This is my code:
`use GuzzleHttp\Client;
use GuzzleHttp\RequestOptions;
use MrMySQL\YoutubeTranscript\TranscriptListFetcher;
$proxies = [
env('DI_PROXY1')
];
$http_client = new Client([
RequestOptions::PROXY => $proxies,
RequestOptions::VERIFY => false
]);
$request_factory = new HttpFactory();
$this->fetcher = new TranscriptListFetcher($http_client, $request_factory);
$transcript_list = $this->fetcher->fetch($videoId);`
Problem is in production.