Dün mustafa abi ile cloudflare için uğraşmıştık epey bir araştırma sonrasın da https://webhook.site/ diye bir siteye yüklediğim dosyayı post ederek gidip gitmediğini görebileceğimi söylediler.
bende buna istinaden kodlarımı güncelleyim upload yaptım fakat, dosya gitmiyor.
bunun sebebini anlamıyorum neden olabilir acaba ?
Request den aldığım dosyayı direk yükleyemiyor muyum ?
try {
$file=$request->file;
$token = config('services.cloudflare.token');
$accountId = config('services.cloudflare.acountId');
$client = new Client();
$client->request('POST', 'https://webhook.site/e8007e4a-dffe-487c-9854-c71a11edd26b', [
'headers' => [
'Authorization' => 'e8007e4a-dffe-487c-9854-c71a11edd26b@email.webhook.site',
'Content-Type' => 'application/json',
],
'multipart/form-data' => [
'file' => [
'contents' => file_get_contents($file),
'name' => 'new-video.',
]
]
]);
} catch (\Exception $exception) {
dd($exception);
}