Merge branch 'master' into support-basic-auth-for-authorization-code-grant

This commit is contained in:
Kyle
2017-08-01 16:52:04 -07:00
committed by GitHub
95 changed files with 2208 additions and 833 deletions

View File

@@ -73,7 +73,7 @@ export const authorizePassword = ( auth ) => ( { authActions } ) => {
let { schema, name, username, password, passwordType, clientId, clientSecret } = auth
let form = {
grant_type: "password",
scopes: encodeURIComponent(auth.scopes.join(scopeSeparator))
scope: encodeURIComponent(auth.scopes.join(scopeSeparator))
}
let query = {}
let headers = {}