Sample code for 30+ languages & platforms
Rust

Get Akeneo Token given Client ID and Secret

See more HTTP Misc Examples

Assumes you're starting with a client ID and secret obtained from your OAuth1 provider, such as OneLogin. Demonstrates how to get an akeneo token using your client id/secret in combination with your akeneo login/password.

Chilkat Rust Downloads

Rust

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

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

// The HTTP Basic authentication for this request is the
// OAuth client id and secret you've already obtained.
http.set_basic_auth(true);
http.set_login("my_akeneo_client_id");
http.set_password("my_akeneo_secret");

// Build this JSON:
// {
//   "grant_type": "password",
//   "username": "yourusername",
//   "password": "yourpassword"
// }

let json = chilkat::JsonObject::new();
let _ = json.update_string("grant_type", "password");
let _ = json.update_string("username", "my_akeneo_username");
let _ = json.update_string("password", "my_akeneo_password");

// POST this JSON (with the Basic Authentication header)
let url = "http://pim.my-akeneo-site.com/api/oauth/v1/token".to_string();
let resp = chilkat::HttpResponse::new();
if http.http_json("POST", &url, &json, "application/json", &resp).is_err() {
    println!("{}", http.last_error_text());
    return;
}

println!("Response status code: {}", resp.status_code());
println!("Response body: {}", resp.body_str());

if resp.status_code() == 200 {
    // Success.
    // Parse the response, which looks like this:

    // 		{
    // 		    "access_token": "MTE0NzNkNzI5YTk0ZTBlNmFlNTI5NmVkOWJhZjUxYWRkN2UzZWIwOWNkMTkwNzY5Mzk3NGViMDFmYzdlODJlMg",
    // 		    "expires_in": 3600,
    // 		    "token_type": "bearer",
    // 		    "scope": null,
    // 		    "refresh_token": "ZDkyMzA2NDhlZjQ2MGQyMDQ2MWRiMDBmOTdkZjQ5ODY5Mzc3MTEzMjVkNTkwZThmNWRlNWY0MzllYWMxZWQ5ZA"
    // 		}

    let _ = json.load(&resp.body_str());
    let access_token = json.string_of("access_token").unwrap_or_default();
    let expires_in = json.int_of("expires_in");
    let token_type = json.string_of("token_type").unwrap_or_default();
    let scope = json.string_of("scope").unwrap_or_default();
    let refresh_token = json.string_of("refresh_token").unwrap_or_default();

    println!("Access Token: {}", access_token);
}