filestack / filestack-php

Official PHP SDK for Filestack - API and content management system that makes it easy to add powerful file uploading and transformation capabilities to any web or mobile application.
https://www.filestack.com
Apache License 2.0
56 stars 32 forks source link

Unable to upload from URL #56

Open CodeCures opened 2 years ago

CodeCures commented 2 years ago

I don't know if this package has the functionality but, i'm trying to upload an audio file using an absolute path to the file on the internet but it keeps saying that file is not found

$filestack = new FilestackClient(config('services.filestack.key'));
$response = $filestack->upload('https://www.soundhelix.com/examples/mp3/SoundHelix-Song-9.mp3', [
    'filename' => $lesson->name
 ]);

Here is the error message file_not_found_exception

Please how can this be fixed