decentralized and customizable links page on top of atproto ligo.at
atproto link-in-bio python uv
at 7db508fcaed3ca82ffb8e31b0f0001f0ecb0d530 23 lines 659 B view raw
1create table if not exists oauth_auth_requests ( 2 state text not null primary key, 3 authserver_iss text not null, 4 did text, 5 handle text, 6 pds_url text, 7 pkce_verifier text not null, 8 scope text not null, 9 dpop_authserver_nonce text not null, 10 dpop_private_jwk text not null 11) strict, without rowid; 12 13create table if not exists oauth_sessions ( 14 did text not null primary key, 15 handle text, 16 pds_url text not null, 17 authserver_iss text not null, 18 access_token text, 19 refresh_token text, 20 dpop_authserver_nonce text not null, 21 dpop_pds_nonce text, 22 dpop_private_jwk text not null 23) strict, without rowid;