2 releases
Uses old Rust 2015
0.1.5 | Mar 20, 2017 |
---|---|
0.1.4 | Mar 20, 2017 |
#22 in #send-request
Used in 2 crates
14KB
286 lines
oauth-client-fix
Fixed OAuth client for Rust
How to use?
Add this to your Cargo.toml
:
[dependencies]
oauth-client-fix = "0.1"
and this to your crate root:
extern crate oauth_client_fix;
lib.rs
:
OAuth 1.0 client library for Rust.
Dependent on libcurl.
Examples
Send request for request token.
const REQUEST_TOKEN: &'static str = "http://oauthbin.com/v1/request-token";
let consumer = oauth_client::Token::new("key", "secret");
let bytes = oauth_client::get(REQUEST_TOKEN, &consumer, None, None).unwrap();
Dependencies
~14MB
~295K SLoC