mnib-dev / spatie-dropbox-api-refreshable-token
Generate access token from refresh token for spatie/dropbox-api
v0.1
2022-11-24 14:56 UTC
Requires
- php: ^7.3 || ^8.0.2
- ext-json: *
- guzzlehttp/guzzle: ^7.5
- spatie/dropbox-api: ^1.21
Requires (Dev)
- mnib-dev/coding-standard: dev-master
This package is auto-updated.
Last update: 2025-03-24 19:49:28 UTC
README
How to get refresh token
-
Visit https://www.dropbox.com/oauth2/authorize?response_type=code&token_access_type=offline&client_id=<APP_KEY>
-
Copy that access code to use in the step below
-
In the terminal use the access code provided above
curl https://api.dropbox.com/oauth2/token -d code=<ACCESS_CODE> -d grant_type=authorization_code -u <APP_KEY>:<APP_SECRET>
-
Save refresh token
<?php declare(strict_types=1); $appKey = ''; $appSecret = ''; $refreshToken = ''; $tokenProvider = new AutoRefreshableTokenProvider($appKey, $appSecret, $refreshToken); $dropboxClient = new Spatie\Dropbox\Client($tokenProvider);