1.1.1 • Published 1 year ago

@cognite/auth-wrapper v1.1.1

Weekly downloads
-
License
Apache-2.0
Repository
github
Last release
1 year ago

DEPRECATED (@cognite/auth-wrapper)

No Maintenance Intended

This package is deprecated due to low usage. We instead recommend to use SDK for your auth provider, like the msal package for Microsoft Azure AD.


The @cognite/auth-wrapper is an OpenID Connect/OAuth 2.0 Wrapper library written in js that provides a convenient way to retrieve access token from any IdP that meets the openid pattern. You can use on client-side or server-side with JavaScript applications.

Getting Started

There are some guides to help you to start using any of our available authentication methods. The guides are at authentication.md.

Samples

There are small bare-bones typescript projects in the samples/ directory. They show how to include to retrieve a token with cognite Auth Wrapper by different methods. The samples' README.md has instructions for running the samples.

E.g: Client Credentials

import { CogniteAuthWrapper } from '@cognite/auth-wrapper';

const token = await CogniteAuthWrapper.load(
    'client_credentials',
    {
        authority: 'your_authority',
        client_id: 'your_client_id',
        grant_type: 'your_grant_type',
        client_secret: 'your_client_secret',
        scope: 'your_scope'
    }
).login();

License

Apache 2.0

Contributing

Contributions welcome! For details about commiting changes, automated versioning and releases, see Contributing.

Testing

This repo contains some integration tests that require some IdP credentials to run. You can use your own IdP credentials, talk to any of the contributors or leave an issue and it'll get sorted. Github Actions will run the test and has its own api key.

Run tests:

npm install
npm test

We use jest to run tests, see their documentation for more information.

Changelog

Wondering about upcoming or previous changes to the auth-wrapper? Take a look at the CHANGELOG.

Versioning

The libraries follow Semantic Versioning. Package versions are updated automatically and individually based on commit messages.