6 releases (breaking)
| 0.5.0 | Sep 28, 2025 |
|---|---|
| 0.4.0 | Sep 28, 2025 |
| 0.3.0 | Sep 27, 2025 |
| 0.2.1 | Sep 27, 2025 |
| 0.1.0 | Sep 22, 2025 |
#2073 in Web programming
138 downloads per month
76KB
2K
SLoC
Rust Wrapper for the LinkedIn API
This crate provides an asynchronous interface to the LinkedIn Voyager API.
Example
use linkedin_api_rs::Linkedin;
use std::env;
#[tokio::main]
async fn main() -> Result<(), linkedin_api_rs::LinkedinError> {
let username = env::var("LINKEDIN_USERNAME").unwrap();
let password = env::var("LINKEDIN_PASSWORD").unwrap();
let api = Linkedin::new(&username, &password, false).await?;
let profile = api.get_profile("billy-g").await?;
Ok(())
}
Dependencies
~33–50MB
~519K SLoC