Goofy provides rust bindings to the mobile instagram API.
```rust use goofy::Client;
fn main() { let username = "foo"; let password = "bar"; let client = Client::new(username, password).expect("Could not create client"); let profile = client.getprofilebyusername("mozilla"); asserteq!(profile.username, "mozilla"); } ```
```rust use goofy::Client;
fn main() { let username = "foo"; let password = "bar"; let client = Client::new(username, password).expect("Could not create client"); let profile = client.getprofileby(7107542290); asserteq!(profile.username, "mozilla"); } ```
This is especially useful when you repeatedly start your program. Storing the client to disk avoids repeated login and thus lowers the chance of getting blocked by instagram. ```rust use goofy::Client;
fn main() { let username = "foo"; let password = "bar"; let client = Client::new(username, password).expect("Could not create client"); client.export("goofy-session.txt").expect("Could not persist client to disk"); } ```