use crate::http_client::HttpClient; use crate::data_toml; use crate::url; use serde_json::json; use iso8601_timestamp::Timestamp; pub async fn post_request(text: String, link: String) -> String { let did = data_toml(&"did"); let handle = data_toml(&"handle"); let url = url(&"record_create"); let col = "app.bsky.feed.post".to_string(); let d = Timestamp::now_utc(); let d = d.to_string(); let post = json!({ "repo": handle.to_string(), "did": did.to_string(), "collection": col.to_string(), "record": { "createdAt": d.to_string(), "text": text.to_string(), "embed": { "$type": "app.bsky.embed.images", "images": [ { "alt": "", "image": { "$type":"blob", "ref": { "$link" : link.to_string() }, "mimeType": "image/png", "size": 0 } } ] } } }); let client = HttpClient::new(); match client.post_json_with_auth(&url, &post).await { Ok(response) => response, Err(e) => format!("Error: {}", e), } }