mirror of
https://github.com/TeamPiped/piped-rust-sdk.git
synced 2024-08-14 23:56:06 +00:00
Add support for extracting comments.
This commit is contained in:
parent
dacbdab7d6
commit
5654524e72
3 changed files with 80 additions and 0 deletions
|
@ -28,3 +28,7 @@ path = "video.rs"
|
|||
[[example]]
|
||||
name = "search_suggestions"
|
||||
path = "search_suggestions.rs"
|
||||
|
||||
[[example]]
|
||||
name = "comments"
|
||||
path = "comments.rs"
|
||||
|
|
21
examples/comments.rs
Normal file
21
examples/comments.rs
Normal file
|
@ -0,0 +1,21 @@
|
|||
use piped::piped::PipedClient;
|
||||
use reqwest::ClientBuilder;
|
||||
|
||||
#[tokio::main]
|
||||
async fn main() {
|
||||
let httpclient = ClientBuilder::new()
|
||||
.user_agent("Mozilla/5.0 (Windows NT 10.0; rv:78.0) Gecko/20100101 Firefox/78.0")
|
||||
.build()
|
||||
.unwrap();
|
||||
|
||||
let instance = "https://pipedapi.kavin.rocks".to_string();
|
||||
|
||||
let client = PipedClient::new(httpclient, instance);
|
||||
|
||||
let comments = client
|
||||
.get_comments_from_id("__hYx6ZzFbQ".to_string())
|
||||
.await
|
||||
.unwrap();
|
||||
|
||||
println!("{:?}", comments);
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue