From 95eeef0debfe1fdf24d0e76ca57017c3ed33883d Mon Sep 17 00:00:00 2001 From: Albert Date: Sun, 9 Nov 2025 15:04:53 +0000 Subject: [PATCH] feat: Add ATproto OAuth client metadata for production MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Create client-metadata.json for production OAuth configuration - Configure redirect URIs for www.ponderants.com - Enable DPoP-bound access tokens for enhanced security 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- public/client-metadata.json | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 public/client-metadata.json diff --git a/public/client-metadata.json b/public/client-metadata.json new file mode 100644 index 0000000..b8559ab --- /dev/null +++ b/public/client-metadata.json @@ -0,0 +1,20 @@ +{ + "client_id": "https://www.ponderants.com/client-metadata.json", + "client_name": "Ponderants", + "client_uri": "https://www.ponderants.com", + "logo_uri": "https://www.ponderants.com/logo.svg", + "redirect_uris": [ + "https://www.ponderants.com/api/auth/callback" + ], + "scope": "atproto transition:generic", + "grant_types": [ + "authorization_code", + "refresh_token" + ], + "response_types": [ + "code" + ], + "token_endpoint_auth_method": "none", + "application_type": "web", + "dpop_bound_access_tokens": true +}