WIP! A BB-style forum, on the ATmosphere! We're still working... we'll be back soon when we have something to show off!
node typescript hono htmx atproto
at main 23 lines 365 B view raw
1meta { 2 name: Check Session 3 type: http 4 seq: 2 5} 6 7get { 8 url: {{appview_url}}/api/auth/session 9} 10 11docs { 12 Check current authentication status. 13 14 Returns 401 if not authenticated. 15 Returns 200 with session info if authenticated: 16 { 17 "authenticated": true, 18 "did": "did:plc:...", 19 "sub": "..." 20 } 21 22 Requires valid session cookie (atbb_session). 23}