1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
#![doc(html_logo_url = "https://raw.githubusercontent.com/u32i64/rvk/master/logo.png")]

//! # Overview
//! This is a crate for accessing VK API (synchronously).
//!
//! All of the API [methods](https://vk.com/dev/methods) are located in the
//! [`methods`](methods/index.html) module of this crate (in the corresponding submodules).
//!
//! # Example
//! ```no_run
//! extern crate rvk;
//! use rvk::{APIClient, Params, methods::*};
//!
//! extern crate serde;
//! #[macro_use]
//! extern crate serde_derive;
//! extern crate serde_json;
//! use serde_json::from_value;
//!
//! #[derive(Deserialize)]
//! struct User {
//!     id: u64,
//!     first_name: String,
//!     last_name: String,
//! }
//!
//! fn main() {
//!     let mut api = APIClient::new("your_access_token"); // Create an API Client
//!
//!     let mut params = Params::new(); // Create a HashMap to store parameters
//!     params.insert("user_ids", "1");
//!
//!     let res = users::get(&api, params);
//!
//!     match res {
//!         Ok(v) => { // v is `serde_json::Value`
//!             let users: Vec<User> = from_value(v).unwrap();
//!             let user = &users[0];
//!
//!             println!(
//!                 "User #{} is {} {}.",
//!                 user.id, user.first_name, user.last_name
//!             );
//!         }
//!         Err(e) => println!("{}", e),
//!     };
//! }
//! ```

extern crate heck;
extern crate reqwest;
extern crate serde;
extern crate serde_json;
#[macro_use]
extern crate serde_derive;

pub mod api;
pub mod error;
pub mod methods;

pub use api::APIClient;
pub use api::Params;

/// Defines the version of VK API that is used
pub const API_VERSION: &str = "5.80";