๐Ÿ€ ATproto XRPC client for gleam possum.hexdocs.pm
gleam atproto xrpc-client library
41

Configure Feed

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

possum: add docs for body used by create_session

kacaii.dev (Jul 1, 2026, 3:56 PM -0300) b47db361 0b8964c8

+9 -1
+9 -1
src/possum.gleam
··· 116 116 /// Documentation: [HTTPS well-known Method](https://atproto.com/specs/handle#https-well-known-method) 117 117 pub fn resolve_well_known_did( 118 118 request: request.Request(_), 119 - host: String, 119 + host host: String, 120 120 ) -> request.Request(_) { 121 121 request 122 122 |> request.set_method(http.Get) ··· 163 163 164 164 /// Create an authentication session. 165 165 /// An **App Password** can be generated in your Bluesky settings. 166 + /// 167 + /// ## Body 168 + /// 169 + /// - **password**: App password 170 + /// - **allowTakendown**: When true, instead of throwing error for takendown accounts, 171 + /// a valid response with a narrow scoped token will be returned 172 + /// - **authFactorToken**: Used during the authentication process to handle 173 + /// Two-Factor Authentication 166 174 /// 167 175 /// ## Examples 168 176 ///