You might see that the Dropbox Community team have been busy working on some major updates to the Community itself! So, here is some info on what’s changed, what’s staying the same and what you can expect from the Dropbox Community overall.
Forum Discussion
bspindia
3 years agoHelpful | Level 7
legacy token
my token is expiring while making api calls and getting unauthorised error due to short live tokens, how to generate unexpired token
please assist
regards,
Sikandar
- 3 years agoHurray made it$ch = curl_init();curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);curl_setopt($ch, CURLOPT_POST, 1);curl_setopt($ch, CURLOPT_POSTFIELDS, "grant_type=refresh_token&refresh_token=***refreshtoken******");curl_setopt($ch, CURLOPT_USERPWD, '**AppKey' . ':' . '***AppSecret*****');$headers = array();$headers[] = 'Content-Type: application/x-www-form-urlencoded';curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);$result = curl_exec($ch);echo $result;if (curl_errno($ch)) {echo 'Error:' . curl_error($ch);}curl_close($ch);
bspindia
Helpful | Level 7
means i have to make fetch with received code for token, right
Здравко
3 years agoLegendary | Level 20
bspindia wrote:means i have to make fetch with received code for token, right
Did you read the documentation? What is the call /oauth2/token, you asked about previously for? 😉
Also, take in mind the above call is used in different situations, with different params (different results, of course) - when you are getting your refresh token and when you are using this token (to get refreshed access token)! Don't forget what are you doing in any particular situation (forgetting means error).
- bspindia3 years agoHelpful | Level 7
i compress the input file image to webp using canvas,
and uploaded using token
now due to short live tokens, i am getting unauthorised error while uploading blob
hence to i need unexpired token,
now as dropbox is not giveing legacy tokens,
i have to authorize app-> generate new token with code->upload blob to dropbox with token
- Здравко3 years agoLegendary | Level 20
bspindia, don't be so lazy! Don't ask question that I just explained in my previous post above. Ok. I'll repeat again: one of the possible usage of mentioned call is access token refresh!!! Do you need such a refresh (i.e. your access token expired as explained here, for instance)?
- bspindia3 years agoHelpful | Level 7
as per my understanding,
i got the code, and when i made a curl request from terminal window received short live token and refresh token
i should keep refresh token and request for shorl live token using refresh token using curl to make api calls,
am i right
- bspindia3 years agoHelpful | Level 7
every thing is fine when run from terminal, but can you please correct paramenters, i am getting this error
{"error": "invalid_request", "error_description": "The request parameters do not match any of the supported authorization flows. Please refer to the API documentation for the correct parameters."}
$headers[]="Accept:application/json";$headers[]="Content-Type:application/json";$cl = curl_init();curl_setopt($cl, CURLOPT_POST,true);curl_setopt($cl,CURLOPT_HTTPHEADER,$headers);curl_setopt($cl,CURLOPT_POSTFIELDS,'{"grant_type":"refresh_token"}');curl_setopt($cl,CURLOPT_POSTFIELDS,'{"refresh_token":"****refresh_token_generated_from terminl******"}');curl_setopt($cl,CURLOPT_POSTFIELDS,'{"****my_AppKey******":"***AppSecret*******"}');curl_setopt($cl,CURLOPT_CONNECTTIMEOUT,2);curl_setopt($cl,CURLOPT_RETURNTRANSFER,true);$clRes = curl_exec($cl);echo $clRes;curl_close($cl); - Здравко3 years agoLegendary | Level 20
bspindia wrote:...curl_setopt($cl,CURLOPT_POSTFIELDS,'{"****my_AppKey******":"***AppSecret*******"}');...What's this? 🤔 Why it's here? Authentication passes through BASIC authentication or passed as a independent parameter(s) (what's this post parameter that you are posting above actually 🧐). Can you point exact parameter matching in the description?
- bspindia3 years agoHelpful | Level 7Hurray made it$ch = curl_init();curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);curl_setopt($ch, CURLOPT_POST, 1);curl_setopt($ch, CURLOPT_POSTFIELDS, "grant_type=refresh_token&refresh_token=***refreshtoken******");curl_setopt($ch, CURLOPT_USERPWD, '**AppKey' . ':' . '***AppSecret*****');$headers = array();$headers[] = 'Content-Type: application/x-www-form-urlencoded';curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);$result = curl_exec($ch);echo $result;if (curl_errno($ch)) {echo 'Error:' . curl_error($ch);}curl_close($ch);
About Discuss Dropbox Developer & API
Make connections with other developers
797 PostsLatest Activity: 8 hours agoIf you need more help you can view your support options (expected response time for an email or ticket is 24 hours), or contact us on X or Facebook.
For more info on available support options for your Dropbox plan, see this article.
If you found the answer to your question in this Community thread, please 'like' the post to say thanks and to let us know it was useful!