filestack-php icon indicating copy to clipboard operation
filestack-php copied to clipboard

bad request on executing the download

Open Krison13425 opened this issue 4 years ago • 0 comments

{ try{ $products = new UploadModel(); $data = $products->find($id); $decode_data = json_decode($data->json); $client = new FilestackClient($decode_data->cilent);

    $destination = 'uploads/'.$data->pdf;
    $result =  $client->download($decode_data->filelink->handle,$destination);
}
catch (FilstackException $e){
    echo $e->getMessage();
    echo $e->getCode();
}   
}

Krison13425 avatar Jun 09 '21 01:06 Krison13425