[!NOTE] This code is mostly useable. A few things are missing, like
.post()
and some other minor methods, but the majority is complete. It is currently available on crates.io under
A simple ATProto implementation in Rust
AtpAgent
AtpAgent
is meant for general AT Protocol operations.
It can be initialized in two ways:
default()
```rs
use atproto_api::{Agent, AtpAgent};async fn main() -> Result<(), Box
println!("{:?}", agent);
Ok(()) }
// AtpAgent { service: "https://bsky.social/", session: None }
2. [`new()`](https://git.sr.ht/~jordanreger/atproto_api/tree/main/item/examples/new.rs)
rs
extern crate dotenvcodegen; use serdejson::json use atproto_api::{Agent, AtpAgent};
async fn main() -> Result<(), Box
println!("{:?}", agent);
Ok(()) }
// AtpAgent { service: "https://fjall.net/", session: None } ```
You can perform a get request by doing the following: ```rs // macros use dotenvcodegen::dotenv; use serdejson::json;
use atproto_api::{Agent, AtpAgent};
async fn main() -> Result<(), Box
let agent = agent .login( dotenv!("BLUESKYIDENTIFIER").tostring(), dotenv!("BLUESKYPASSWORD").tostring(), ) .await?;
let record = json!({ "repo": "fjall.net", "collection": "app.bsky.feed.post", "rkey": "3k653jvvxlw2v" });
let res = agent .get("com.atproto.repo.getRecord".to_string(), record) .await?;
println!("{:?}", res);
Ok(()) } ```
The first parameter is a lexicon, the specific ones you can view by scrolling down to the bottom of the page and looking through the "Lexicons" section. The second parameter is a record, which is a JSON object that contains the other important information (in the case of com.atproto.repo.getRecord
, that's repo
, collection
, and rkey
).
BskyAgent
[!NOTE]
BskyAgent
is currently on the backburner, as it's a superset ofAtpAgent
. If for some reason you're using this library now, please useAtpAgent
instead ofBskyAgent
for the time being.
This code is licensed under the BSD 3-Clause license. You can view the license here.