flickr 0.1.0

Rust binding to Flickr API
Documentation

Flickr-Rust

Flickr-Rust is an unofficial Rust binding to Flickr API with REST and OAUTH.

Example

use flickr::{FlickrAPI};

let mut flickr = FlickrAPI::new(
                  "MY-FLICKR-API-KEY", 
                  "MY-FLICKR-API-SECRET");

let res = flickr.favorites()
                .get_list()
                .perform()?;

println!("{:#?}", res.photos.unwrap());

You have to get your custom Flickr API key and Flickr API secret to use this crate.

Status

The plan is to cover all the essential non-deprecated and non-experimental methods of Flickr API. The current method groups coverage is shown below.

Implemented: auth.oauth, favorites

Unimplemented: activity, auth, blogs, cameras, collections, commons, contacts, galleries, groups, groups.discuss.replies, groups.discuss.topics, groups.members, groups.pools, interestingness, machinetags, panda, people, photos, photos.comments, photos.geo, photos.licenses, photos.notes, photos.people, photos.suggestions, photos.transform, photos.upload, photosets, photosets.comments, places, prefs, profile, push, reflection, stats, tags, test, testimonials, urls

In addition, upload and replace features aren't implemented yet.

See change log for information about version history.

License

Flickr-Rust is licensed under Apache License, Version 2.0.