fbvideo

Library to get video URLs from Facebook.

Documentation Crates.io

Examples

```rust use fbvideo::{FbVideo, Quality};

[tokio::main]

async fn main() { let mut fb = FbVideo::new( "https://www.facebook.com/817131355292571/videos/2101344733268123/", Quality::Hd, ); match fb.getvideourl().await { Ok(url) => println!("{:?}", url), Err(e) => panic!("{:?}", e), } } ```