oa-auth
v0.0.4
Published
oa auth client
Readme
OA Auth Client
The OA Authentication Helper Library. The OA Auth helper library lets you write javascript code to make HTTP requests to the OA-Auth API. This library is intended for front-end, client-side applications using React, React Native, or plain HTML/CSS/Javascript.
Visit Docs for more info.
Install
With npm:
npm install oa-author with yarn:
yarn add oa-authUsage
const url = 'XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX'; // Your OA auth URL
const headers = {}; // Your OA tokens ( accessToken, refreshToken, idToken )
import Auth from 'oa-auth';
const client = Auth({ url, headers });
(async () => {
const { data, error } = await client.getCountries();
console.log('data', data);
console.log('error', error);
})();