Skip to content

Commit d7e83b0

Browse files
committed
Set application_type in runAuthMigrationClient
The SEP-2352 authorization-server-migration handler constructs its own ConformanceOAuthProvider (not via withOAuthRetry), so it was missing application_type after rebasing onto main. The scenario does DCR twice (old AS, new AS) and the SEP-837 check fires on each.
1 parent 5056890 commit d7e83b0

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

examples/clients/typescript/everything-client.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -284,7 +284,8 @@ async function runAuthMigrationClient(serverUrl: string): Promise<void> {
284284
'http://localhost:3000/callback',
285285
{
286286
client_name: 'auth-migration-client',
287-
redirect_uris: ['http://localhost:3000/callback']
287+
redirect_uris: ['http://localhost:3000/callback'],
288+
application_type: 'native'
288289
}
289290
);
290291

0 commit comments

Comments
 (0)