We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2ca79ab commit 6b5b847Copy full SHA for 6b5b847
server/utils/atproto/oauth.ts
@@ -41,11 +41,11 @@ export function getOauthClientMetadata(pkAlg: string | undefined = undefined): O
41
? webUriSchema.parse(`${clientUri}/.well-known/jwks.json`)
42
: undefined
43
44
- // If anything changes here, please make sure to also update /shared/schemas/oauth.ts to match
45
return {
46
client_name: 'npmx.dev',
47
client_id,
48
client_uri: clientUri,
+ logo_uri: webUriSchema.parse(`${clientUri}/logo-icon.svg`),
49
scope,
50
redirect_uris: [redirect_uri],
51
grant_types: ['authorization_code', 'refresh_token'],
0 commit comments