馃悁 ATproto library for gleam
atproto library gleam
35

Configure Feed

Select the types of activity you want to include in your feed.

29 1 13

Clone this repository

https://tangled.org/kacaii.dev/possum https://tangled.org/did:plc:f2s2nd3tnw75so75ndrns6s2
git@tangled.org:kacaii.dev/possum git@tangled.org:did:plc:f2s2nd3tnw75so75ndrns6s2

For self-hosted knots, clone URLs may differ based on your setup.



README.md

Possum#

HTTP request helpers for querying data from your Personal Data Server. The user is responsible for deciding how to send the request and decode the response.

Example#

gleam add gleam_http
possum = { git = "https://tangled.org/kacaii.dev/possum", ref = "commit-hash" }
import gleam/http/request
import possum

pub fn build_request() -> request.Request(String) {
  request.new()
  |> request.set_host("bsky.social")
  |> possum.create_session(
    "kacaii.dev",
    "bsky-app-password",
    option.None,
    option.None
  )
}