@awhere/api
TypeScript icon, indicating that this package has built-in type declarations

0.5.4 • Public • Published

@awhere/api

1. Register the API with your credentials

- Register with API Key

import { APIKey, CredentialType, identityManager } from '@awhere/api/identity';
const credential = new APIKey({
    aWhereUrl: '<Your aWhere URL>',
    key: '<Your aWhere API Key>',
});
identityManager.registers([credential]);
identityManager.setDefaultCredential(credential);

- Register with OAuth2.0 flow

ES6

// signin.js

import { OAuth, CredentialType, identityManager } from '@awhere/api/identity';
const credential = new OAuth({
    aWhereUrl: '<Your aWhere URL>',
    appId: '<Your App Id>',
    callbackUrl: '/oauth-callback',
});
identityManager.registers([credential]);
identityManager.setDefaultCredential(credential);
credential.syncWithStorage().then(() => {
    if (!identityManager.defaultOAuth.signedIn) {
        return identityManager.defaultOAuth.signIn();
    }
    // go to the signed-in page
});
// oauth-callback.js

import { fetchToken } from '@awhere/api/identity';

fetchToken(location)
    .then(() => {
        // authorized page
        location.href = '/';
    })
    .catch((err) => {
        // oauth flow authorized page
        location.href = '/sigin?' + err;
    });

HTML

<script src="<Your aWhere JavaScript API URL>"></script>
<script>
    const credential = new awhere.identity.OAuth({
        aWhereUrl: '<Your aWhere URL>',
        appId: '<Your App Id>',
        callbackUrl: '/oauth-callback.html',
    });
    awhere.identity.identityManager.registers([credential]);
    awhere.identity.identityManager.setDefaultCredential(credential);
    credential.syncWithStorage().then(() => {
        if (!awhere.identity.identityManager.defaultOAuth.signedIn) {
            return awhere.identity.identityManager.defaultOAuth.signIn();
        }
        // go to the signed-in page
    });
</script>
<!-- oauth-callback.html -->

<script src="<Your aWhere JavaScript API URL>"></script>
<script>
    awhere.identity
        .fetchToken(location)
        .then(() => {
            // authorized page
            location.href = '/';
        })
        .catch((err) => {
            // oauth flow authorized page
            location.href = '/sigin?' + err;
        });
</script>

2. Use the API

import { Item, User } from '@awhere/api/core';
// Load item
Item.fromId('xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx').then((items) => {
    console.log('items', items);
});

// List users (admin only)
User.find().then((users) => {
    console.log('users', users);
});

HTML Page

<script src="<Your aWhere JavaScript API URL>"></script>
<script>
    // List your content
    awhere.core.Item.fromId('xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx').then((item) => {
        console.log('item', item);
    });

    // List users (admin only)
    awhere.core.User.find().then((users) => {
        console.log('users', users);
    });
</script>

Package Sidebar

Install

npm i @awhere/api

Weekly Downloads

98

Version

0.5.4

License

Apache-2.0

Unpacked Size

595 kB

Total Files

431

Last publish

Collaborators

  • switchayakul.dev
  • nicky-dev