laravel-dropbox icon indicating copy to clipboard operation
laravel-dropbox copied to clipboard

A Laravel package for working with Dropbox API v2.

Results 13 laravel-dropbox issues
Sort by recently updated
recently updated
newest added

The token expiration check always returned false because the expiration date was not convert to time

Fix the refresh token check with help of carbon package. The $now = time() + 300 results in an integer, while the $token->expires_in is a datetime string. This check will...

`now()+300` returns integer value. And this value can't be compared with string datetime expires_in saved in database (see migration file). So app never uses a refresh token. Also, reduced supported...

Hi, DROPBOX_ACCESS_TOKEN is presented on .env file but when creating folder or upload file getting 401 error. I have cleared config cache but still i getting the error.

Please respond if possible.🙏 Please support thumbnail endpoints - https://www.dropbox.com/developers/documentation/http/documentation#files-get_thumbnail - https://www.dropbox.com/developers/documentation/http/documentation#files-get_thumbnail_batch

Hi there, I really broke my fingers while trying to find what I am doing wrong, but I cant find it. I am trying to upload a pdf file into...

I might be wrong, but as far as I can see, the **expires_in** is stored as a date in the database. When calling the **function getAccessToken()** a unix_timestamp is compared...

I am working on a SAAS application where I want each user to use their own dropbox. For that I want to give them option in his profile settings to...

The method Dropbox::isConnected return true even if the token in the db is expired

Hello @dcblogdev, Your package was superb. I am using it and find very helpful too. But now I am in a little bit trouble while I need to generate the...