2 个版本
使用旧的 Rust 2015
0.1.5 | 2017 年 3 月 20 日 |
---|---|
0.1.4 | 2017 年 3 月 20 日 |
#22 在 #send-request
在 2 个crate中使用
14KB
286 行
oauth-client-fix
修复 Rust 的 OAuth 客户端
如何使用?
将此内容添加到您的 Cargo.toml
[dependencies]
oauth-client-fix = "0.1"
并添加到您的 crate 根目录
extern crate oauth_client_fix;
lib.rs
:
Rust 的 OAuth 1.0 客户端库。
依赖于 libcurl。
示例
发送请求令牌。
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();
依赖项
~14MB
~295K SLoC