facebook_api_rs 0.1.2

A Rust client library for the Facebook Graph API v23.0, with full support for both native and WebAssembly (WASM) environments
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
pub mod accounts;
mod batch;
pub mod client;
pub mod data;
pub mod image;
pub mod instagram;
pub mod me;
pub mod pages;
pub mod utils;

pub mod prelude {
    pub use crate::graph::{
        accounts::*, batch::request::*, client::*, data::*, image::*, instagram::prelude::*, me::*,
        pages::*, utils::*,
    };
}