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 55e42dd commit c7358eaCopy full SHA for c7358ea
src/multi-rp-client.js
@@ -51,7 +51,7 @@ class MultiRpClient {
51
// state: '...', // not doing state for the moment
52
// scope: 'openid profile'
53
}
54
- if (workflow === 'code') { // Authorization Code workflow
+ if (workflow === 'code') { // Authorization Code workflow
55
authParams.response_type = 'code'
56
} else if (workflow === 'implicit') {
57
authParams.response_type = 'id_token token'
test/unit/multi-rp-client-test.js
@@ -3,7 +3,6 @@
3
const test = require('tape')
4
const sinon = require('sinon')
5
6
-
7
const OIDCRelyingParty = require('@trust/oidc-rp')
8
const MultiRpClient = require('../../src/index')
9
const ClientStore = require('../../src/client-store')
0 commit comments