cmn-oauthcode

1.0.21 • Public • Published

cmn-oauthcode

Page component to receive OAUTH2 codes from AAD (Common)

NPM JavaScript Style Guide

Install

npm install --save cmn-oauthcode

Description

Location & History as props, path exported. Fixed "resp" undefined. Fixed call #2. Removed "example", fixed ESLint some warnings. Changed call to /api/token. Introduced reducer. Introduced dispatch (exp.) @@INIT. Removed config from @@INIT. Reverted to combineReducers. Added LOGOUT_MESSAGE and LOGIN_ERROR.

Usage

import React, from 'react';
import App from './app';
import OauthCode from 'cmn-oauthcode';
 
const OauthCodeStub = () => {
  const location = useLocation();
  const history = useHistory();
  console.log('stub');
  return <OauthCode location={location} history={history} />;
};
 
const AppRouter = () => (
  <Router>
     <Switch>
      <Route path="/some" exact>
        <App />
      </Route>
      <Route exact path={OauthCode.route} render={() => <OauthCodeStub />} />
    </Switch>
  </Router>
);

License

MIT © dsouflis

Readme

Keywords

none

Package Sidebar

Install

npm i cmn-oauthcode

Weekly Downloads

0

Version

1.0.21

License

MIT

Unpacked Size

717 kB

Total Files

6

Last publish

Collaborators

  • dsouflis