Sample code for 30+ languages & platforms
Rust

Dropbox Refresh OAuth2 Access Token

See more Dropbox Examples

Demonstrates how to mint a new access token using the refresh token obtained when originally getting the OAuth2 access token.

Chilkat Rust Downloads

Rust

// This example assumes the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.

let http = chilkat::Http::new();

// Implements the following CURL command:

// curl -X GET https://api.dropbox.com/oauth2/token \
//     -d grant_type=refresh_token \
//     -d refresh_token=<YOUR_REFRESH_TOKEN> \
//     -u <YOUR_APP_KEY>:<YOUR_APP_SECRET>

// Use the following online tool to generate HTTP code from a CURL command
// Convert a cURL Command to HTTP Source Code

http.set_login("DROPBOX_APP_KEY");
http.set_password("DROPBOX_APP_SECRET");

// Get the refresh token from the JSON we saved when originally getting the access token.
// (See Get Dropbox OAuth2 Access Token w/ Refresh Token
let json = chilkat::JsonObject::new();
if json.load_file("qa_data/tokens/dropbox.json").is_err() {
    println!("{}", json.last_error_text());
    return;
}

let req = chilkat::HttpRequest::new();
req.add_param("grant_type", "refresh_token");
req.add_param("refresh_token", &json.string_of("refresh_token").unwrap_or_default());

req.set_http_verb("POST");
req.set_content_type("application/x-www-form-urlencoded");

let resp = chilkat::HttpResponse::new();
if http.http_req("https://api.dropbox.com/oauth2/token", &req, &resp).is_err() {
    println!("{}", http.last_error_text());
    return;
}

let sb_response_body = chilkat::StringBuilder::new();
let _ = resp.get_body_sb(&sb_response_body);

let j_resp = chilkat::JsonObject::new();
let _ = j_resp.load_sb(&sb_response_body);
j_resp.set_emit_compact(false);

println!("Response Body:");
println!("{}", j_resp.emit().unwrap_or_default());

let resp_status_code = resp.status_code();
println!("Response Status Code = {}", resp_status_code);
if resp_status_code >= 400 {
    println!("Response Header:");
    println!("{}", resp.header());
    println!("Failed.");
    return;
}

// Sample JSON response:
// (Sample code for parsing the JSON response is shown below)

// {
//   "access_token": "sl.AC75WPYRqOi0mxcRqlimbV9FKHu04biz5qHwatG3MTgzFK7kLrGVlM9EgP4603tE7bWw0s1rMbTKiHsf37TUshPYvq-3r0qeBr_PrZIAibN8XOQicvboiOnqx6JrDekq-w8D-tE",
//   "token_type": "bearer",
//   "expires_in": 14400
// }

let access_token = j_resp.string_of("access_token").unwrap_or_default();
println!("New Access Token: {}", access_token);

// Perhaps update our Dropbox JSON file with the new access token.
// (The existing refresh token does not change, and can be used over and over to mint new access tokens.)
let _ = json.update_string("access_token", &access_token);

let _ = json.write_file("qa_data/tokens/dropbox.json");