This commit is contained in:
Michael Wain 2025-03-06 02:03:02 +03:00
parent a6732847be
commit 02509466a6
3 changed files with 3 additions and 3 deletions

2
Cargo.lock generated
View File

@ -1036,7 +1036,7 @@ dependencies = [
[[package]]
name = "soundcloud"
version = "0.1.8"
version = "0.1.10"
dependencies = [
"hyper-util",
"regex",

View File

@ -1,6 +1,6 @@
[package]
name = "soundcloud"
version = "0.1.9"
version = "0.1.10"
edition = "2021"
description = "A small rust crate for fetching data from soundcloud without developer account"
authors = ["alterwain"]

View File

@ -30,7 +30,7 @@ pub async fn get_likes(
user_id: u64,
client_id: String,
app_version: String,
) -> Result<Option<String>, Box<dyn Error>> {
) -> Result<Option<String>, Box<dyn Error + Send + Sync>> {
let client = reqwest::Client::new();
let resp = client.get(format!("https://{}/users/{}/likes?client_id={}&limit=10&offset=0&linked_partitioning=1&app_version={}&app_locale=en", SOUNDCLOUD_API_DOMAIN, user_id, client_id, app_version) )