spatie / flysystem-dropbox

A flysystem driver for Dropbox that uses the v2 API
https://freek.dev/734-dropbox-will-turn-off-v1-of-their-api-soon-its-time-to-update-your-php-application
MIT License
343 stars 50 forks source link

getTemporaryLink #19

Closed lumineida closed 7 years ago

lumineida commented 7 years ago

Hi, I'm trying to get the temporary link with:

Storage::disk('dropbox')->getTemporaryLink($path);

But I'm getting:

Call to undefined method League\Flysystem\Filesystem::getTemporaryLink

I appreciate your help.

lumineida commented 7 years ago

Sorry, solved it with:

Storage::disk('dropbox')->getAdapter()->getTemporaryLink($path);