This library allows you to access the Diffbot API from your rust application. You still need a diffbot token (check their trial).
It returns a Json object from rustc_serialize, which is basically a BTreeMap.
Add to your Cargo.toml
dependencies:
[dependencies]
diffbot = "0.1"
And to your main source file:
rust
extern crate diffbot;
```rust extern crate diffbot; use diffbot::*;
fn main() { let client = Diffbot::v3("insertyourtoken_here"); match client.call(API::Analyze, "http://www.diffbot.com") { Ok(result) => println!("{:?}", result), Err(Error::Api(code, msg)) => println!("API returned error {}: {}", code, msg), Err(err) => println!("Other error: {:?}", err), }; } ```
```rust extern crate diffbot; use diffbot::*;
fn main() { let client = Diffbot::v3("insertyourtoken_here"); match client.search("GLOBAL-INDEX", "type:article diffbot") { Ok(result) => println!("{:?}", result), Err(Error::Api(code, msg)) => println!("API returned error {}: {}", code, msg), Err(err) => println!("Other error: {:?}", err), }; }
```
This library is under the MIT license. You can probably use it in your commercial application without complication.