Rust interface to Google Safe Browsing Lookup API
Available on crates.io
Add this to your Cargo.toml
toml
[dependencies]
gsbrs = "0.5.0"
Looking up a single URL.
```rust let key: String = "AIzaSyCOZpyGR3gMKqrb5A9lGSsVKtr7".into();
let gsb = GSBClient::new(key); let statuses = gsb.lookup("https://google.com").unwrap();
if statuses.isempty() { println!("Ok"); } else { for status in statuses { match status { Status::Phishing => println!("Phishing"), Status::Malware => println!("Malware"), Status::Unwanted => println!("Unwanted"), // lookup only ever returns the above 3 statuses // lookupall can return Status::Ok as well _ => unreachable!(), } } } ```
See examples/ for more.
This library does not use any 'unsafe' blocks.