Simple vanilia JS vite project with ATProto OAuth out of the box
at main 411 B view raw
1{ 2 "redirect_uris": [ 3 "https://{yourdomain.com}" 4 ], 5 "response_types": [ 6 "code" 7 ], 8 "grant_types": [ 9 "authorization_code", 10 "refresh_token" 11 ], 12 "scope": "atproto transition:generic", 13 "token_endpoint_auth_method": "none", 14 "application_type": "web", 15 "subject_type": "public", 16 "client_id": "https://{yourdomain.com}/oauth-client-metadata.json", 17 "dpop_bound_access_tokens": true 18}