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 96d3bb8 commit 4269aa0Copy full SHA for 4269aa0
src/connection/auth.ts
@@ -289,14 +289,7 @@ class AccessTokenAuthenticator implements OidcAuthFlow {
289
});
290
};
291
292
- validateOpenidConfig = () => {
293
- if (
294
- this.openidConfig.provider.grant_types_supported === undefined ||
295
- !this.openidConfig.provider.grant_types_supported.includes('refresh_token')
296
- ) {
297
- throw new Error('grant_type refresh_token not supported');
298
- }
299
- };
+ validateOpenidConfig = () => {};
300
301
requestAccessToken = () => {
302
const url = this.openidConfig.provider.token_endpoint;
0 commit comments