Annict API client library for Rust
Add this to your Cargo.toml
:
toml
[dependencies]
annis = "0.0.1"
and this to your crate root:
rust
extern crate annis;
Example code that request to /v1/works.
```rust
extern crate annis;
use annis::{Auth, Client};
fn main(){
let auth = OAuth::client_id("client_id");
let uri = &auth.authorize_url().redirect_uri("https://example.com").scope("read+write").build();
// -> Browser access to this uri and Get a certification code.
let access_token = auth
.access_token()
.client_secret("client_secret_key")
.code("certification code")
.build();
let client = Client::set_token("annict_access_token");
let works = annis::works().params(vec![("filter_title", "lain")]);
let json = client.call(works).unwrap();
assert_eq!(json["works"][0]["title"], "serial experiments lain".to_string());
} ```
Auth Requests were made two ways that methods or creating struct.
```rust
extern crate annis;
use annis::{OAuth, AuthorizeUri, AccessToken};
let auth = OAuth::client_id("client_id");
// Get Authorize URL let instant = auth.authorize_url().build();
let manual = AuthorizeUrl{
client_id: "client_id".to_string(),
redirect_uri: "urn:ietf:wg:oauth:2.0:oob".to_string(),
scope: "read".to_string()
}.build();
assert_eq!(instant, manual);
// Get AccessToken let instant = auth .accesstoken() .clientsecret("clientsecretkey") .code("certification code") .build();
let manual = AccessToken{
client_id: "client_id".to_string(),
client_secret: "client_secret_key".to_string(),
code: "certification code".to_string(),
redirect_uri: "urn:ietf:wg:oauth:2.0:oob".into()
}.build();
assert_eq!(instant, manual);
```
MIT license http://opensource.org/licenses/mit-license.php