Browse Source

accept scope as array, use scope as delimited string

v1.2
AJ ONeal 7 years ago
parent
commit
23db17a31e
  1. 2
      oauth3.core.js
  2. 2
      oauth3.issuer.js

2
oauth3.core.js

@ -169,7 +169,7 @@
}
, scope: {
parse: function (scope) {
return (scope||'').split(/[+, ]+/g);
return (scope||'').toString().split(/[+, ]+/g);
}
, stringify: function (scope) {
if (Array.isArray(scope)) {

2
oauth3.issuer.js

@ -371,7 +371,7 @@ OAUTH3.authn.resourceOwnerPassword = function (directive, opts) {
OAUTH3.authz = {};
OAUTH3.authz.scopes = function (providerUri, session, clientParams) {
var clientUri = OAUTH3.uri.normalize(clientParams.client_uri || OAUTH3._browser.window.document.referrer);
var scope = clientParams.scope || [ 'authn@oauth3.org' ];
var scope = clientParams.scope || 'authn@oauth3.org';
if ('authn@oauth3.org' === scope.toString()) {
// implicit ppid grant is automatic
console.warn('[security] fix scope checking on backend so that we can do automatic grants');

Loading…
Cancel
Save