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.
2 parents 0ec3e23 + 1c8e14b commit 1d4724bCopy full SHA for 1d4724b
2 files changed
server/utils/atproto/oauth.ts
@@ -31,6 +31,7 @@ export function getOauthClientMetadata() {
31
application_type: 'web',
32
token_endpoint_auth_method: 'none',
33
dpop_bound_access_tokens: true,
34
+ response_types: ['code'],
35
}) as OAuthClientMetadataInput
36
}
37
shared/schemas/oauth.ts
@@ -10,4 +10,5 @@ export const OAuthMetadataSchema = object({
10
application_type: string(),
11
token_endpoint_auth_method: string(),
12
dpop_bound_access_tokens: boolean(),
13
+ response_types: array(string()),
14
})
0 commit comments