when people sign into the app, it shows the domain with a client-metadata.json path; this removes that path. https://atproto.com/guides/oauth#clients
+3
-3
Diff
round #0
+1
-1
apps/main-app/src/index.ts
+1
-1
apps/main-app/src/index.ts
+1
-1
apps/main-app/src/lib/oauth-client.ts
+1
-1
apps/main-app/src/lib/oauth-client.ts
···
134
134
135
135
// Production client with private_key_jwt
136
136
return {
137
-
client_id: `${config.domain}/client-metadata.json`,
137
+
client_id: `${config.domain}/oauth-client-metadata.json`,
138
138
client_name: config.clientName,
139
139
client_uri: `https://wisp.place`,
140
140
logo_uri: `${config.domain}/logo.png`,
+1
-1
docs/src/content/docs/deployment.md
+1
-1
docs/src/content/docs/deployment.md
···
228
228
229
229
Required endpoints:
230
230
- `/.well-known/atproto-did` - Returns your DID for lexicon resolution
231
-
- `/client-metadata.json` - OAuth client metadata
231
+
- `/oauth-client-metadata.json` - OAuth client metadata
232
232
- `/jwks.json` - OAuth signing keys
233
233
234
234
These are automatically served by the backend.
it got merged so idk why it didnt close