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 e2088dc commit 146181bCopy full SHA for 146181b
examples/clients/typescript/helpers/ConformanceOAuthProvider.ts
@@ -67,7 +67,9 @@ export class ConformanceOAuthProvider implements OAuthClientProvider {
67
throw new Error('No auth code in redirect URL');
68
}
69
} else {
70
- throw new Error('No redirect location received');
+ throw new Error(
71
+ `No redirect location received, from '${authorizationUrl.toString()}'`
72
+ );
73
74
} catch (error) {
75
console.error('Failed to fetch authorization URL:', error);
0 commit comments