insomnia/app/network/o-auth-2/grant-implicit.js
Gregory Schier 3f5e7e2e14 First-Party OAuth 2.0 Support (#120)
* Proof of concept authorize call

* Authorize and Refresh endpoints done

* OAuth2 editor started

* Some small fixes

* Set OAuth headers on request

* Started on some OAuth tests

* Updated network logic with new OAuth API

* OAuth forms and refactor flows

* Fix grant type handling

* Moved auth handling out of render pipeline

* Fixed legacy auth header

* Fix vertical center

* Prompt user on auth type change

* Refresh tokens working (I think) and better UI

* Catch same type auth change

* POC refresh token and small refactor

* Better token handling

* LOading state to token refresh

* Show o-auth-2 errors

* Some minor updates
2017-03-23 15:10:42 -07:00

39 lines
1.1 KiB
JavaScript

import * as querystring from '../../common/querystring';
import * as c from './constants';
import {responseToObject, authorizeUserInWindow} from './misc';
export default async function (authorizationUrl, clientId, redirectUri = '', scope = '', state = '') {
const params = [
{name: c.P_RESPONSE_TYPE, value: c.RESPONSE_TYPE_TOKEN},
{name: c.P_CLIENT_ID, value: clientId}
];
// Add optional params
redirectUri && params.push({name: c.P_REDIRECT_URI, value: redirectUri});
scope && params.push({name: c.P_SCOPE, value: scope});
state && params.push({name: c.P_STATE, value: state});
// Add query params to URL
const qs = querystring.buildFromParams(params);
const finalUrl = querystring.joinUrl(authorizationUrl, qs);
const redirectedTo = await authorizeUserInWindow(finalUrl, /(access_token=|error=)/);
const fragment = redirectedTo.split('#')[1];
if (fragment) {
return responseToObject(fragment, [
c.P_ACCESS_TOKEN,
c.P_TOKEN_TYPE,
c.P_EXPIRES_IN,
c.P_SCOPE,
c.P_STATE,
c.P_ERROR,
c.P_ERROR_DESCRIPTION,
c.P_ERROR_URI
]);
} else {
// Bad redirect
return {};
}
}