#api-client #client #strava #api

strava-client-rs

Strava API 客户端库

4 个版本

0.2.1 2024年2月25日
0.2.0 2024年2月16日
0.1.1 2024年2月11日
0.1.0 2024年2月10日

#2#strava

MITGPL-3.0-only

45KB
706

strava-client-rs

crates.io docs.rs

使用 OAuth2 获取和刷新访问令牌的 Rust Strava API 客户端库

示例

use strava_client_rs::{api::{auth, athlete}};
use strava_client_rs::util::auth_config;
use std::env;
use std::path::Path;

fn main() {
    //Get the access token from the config file or get a new one                                     
    let config_file = env::var("STRAVA_CONFIG_FILE").unwrap_or_else(|_| "config.json".to_string());
    let access_token = get_access_token(config_file).unwrap();
    let athlete = athlete::get_athlete(access_token.as_str()).unwrap();
    println!("Athlete: {:?}\n", athlete);
    let athlete_id = athlete.id.to_string();
}

// Get the access token from the config file or get a new one                                       
fn get_access_token(config_file: String) -> Result<String, String> {
    let client_id =
        env::var("STRAVA_CLIENT_ID").expect("Missing the STRAVA_CLIENT_ID environment variable.");
    let client_secret = env::var("STRAVA_CLIENT_SECRET")
        .expect("Missing the STRAVA_CLIENT_SECRET environment variable.");
    let auth_url = "http://www.strava.com/oauth/authorize";
    let token_url = "https://www.strava.com/oauth/token";

    // Setup default config for auth                                                                
    let mut config = auth::Config::new(
        client_id.to_string(),
        client_secret.to_string(),
        Default::default(), // no refresh token so set to default which is none                     
        auth_url.to_string(),
        token_url.to_string(),
    );

    // Check if the config file exists and get the access token or get a new one                    
    if Path::new(&config_file).exists() {
        config.refresh_token = Some(auth_config::config_file::load_config().refresh_token);
        let refresh_access_token = auth::get_refresh_token(config);
        Ok(refresh_access_token.unwrap().to_string())
    } else {
        let access_token = auth::get_authorization(config);
        Ok(access_token.unwrap().to_string()) }
}

版本

免责声明

此库与 Strava 无关。使用风险自负。这是一个仍在进行中的项目。当前版本中,它只能读取运动员、装备、俱乐部和活动的数据。它还将更新运动员的体重(千克)。

依赖关系

~6–18MB
~287K SLoC