diff --git a/oauth3.core.js b/oauth3.core.js index 39f79e1..cb318eb 100644 --- a/oauth3.core.js +++ b/oauth3.core.js @@ -302,6 +302,8 @@ }; var result; + console.log('implicitGrant opts.subject: ', opts.subject); + params.response_type = responseType; if (scope) { params.scope = OAUTH3.scope.stringify(scope); @@ -713,6 +715,7 @@ , client_id: opts.client_id || opts.client_uri , client_uri: opts.client_uri || opts.client_id , scope: opts.scope + , subject: opts.subject , state: opts._state || undefined , debug: opts.debug } diff --git a/oauth3.issuer.js b/oauth3.issuer.js index 257a196..19f3dc2 100644 --- a/oauth3.issuer.js +++ b/oauth3.issuer.js @@ -422,6 +422,7 @@ OAUTH3.authz.redirectWithToken = function (providerUri, session, clientParams, s , response_type: clientParams.response_type , referrer: clientParams.referrer , session: session + , subject: clientParams.subject , debug: clientParams.debug }).then(function (results) {