OAuthSession
@Serializable
Persisted OAuth session state. Contains everything needed to make authenticated XRPC requests and refresh the session when the access token expires.
The DPoP keypair is serialized as raw byte arrays (PKCS8 private key + X509 public key) rather than as JWK JSON. The consumer's OAuthSessionStore implementation is responsible for encrypting these at rest (e.g. via EncryptedSharedPreferences on Android).
Constructors
Link copied to clipboard
constructor(accessToken: String, refreshToken: String, did: String, handle: String, pdsUrl: String, tokenEndpoint: String, revocationEndpoint: String? = null, clientId: String? = null, dpopPrivateKey: ByteArray, dpopPublicKey: ByteArray, authServerNonce: String? = null, clockOffsetSeconds: Long = 0, pdsNonce: String? = null)