From abe54dde004a43c7e180a8d36928dc52d4fc31ca Mon Sep 17 00:00:00 2001 From: Anthony Ettinger Date: Sat, 12 Sep 2026 18:58:48 +0000 Subject: [PATCH] Serve an OpenAccess descriptor at /.well-known/openaccess.json Lists TronBrowser on OpenAccess hubs (openaccess.logicsrc.com) so people can link it with OAuth 2.1 + PKCE and it honours the shared profullstack.com/all-access entitlement. The Ed25519 public key here is the app's credential for reporting sales; the private half is in the logicsrc teams vault openaccess-app-keys--prod. Scopes are empty for now: the reserved openid, email and entitlements scopes need no listing. Spec: https://logicsrc.com/openaccess Co-Authored-By: Claude Fable 5.1 Claude-Session: https://claude.ai/code/session_01SWRffW4ifQPUrGXJtgYWMd --- apps/web/public/.well-known/openaccess.json | 29 +++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 apps/web/public/.well-known/openaccess.json diff --git a/apps/web/public/.well-known/openaccess.json b/apps/web/public/.well-known/openaccess.json new file mode 100644 index 00000000..f9cd6cad --- /dev/null +++ b/apps/web/public/.well-known/openaccess.json @@ -0,0 +1,29 @@ +{ + "openaccess": "0.1", + "name": "TronBrowser", + "url": "https://tronbrowser.dev", + "operator": "https://logicsrc.com/.well-known/openprofile.md", + "redirect_uris": [ + "https://tronbrowser.dev/api/v1/openaccess/callback" + ], + "jwks": { + "keys": [ + { + "kty": "OKP", + "crv": "Ed25519", + "kid": "GZ-hAxZuYvgi", + "x": "Rhmyaz2DaU5occWFlzdqYRujh6Qvg4hnUAOCJjMArLA", + "alg": "EdDSA", + "use": "sig" + } + ] + }, + "scopes": {}, + "honours": [ + "profullstack.com/all-access" + ], + "webhooks": "https://tronbrowser.dev/api/v1/openaccess/events", + "hubs": [ + "https://openaccess.logicsrc.com" + ] +}