Socket
Socket
Sign inDemoInstall

@cognite/auth-wrapper

Package Overview
Dependencies
8
Maintainers
2
Versions
3
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    @cognite/auth-wrapper

⛔️ DEPRECATED - A OpenID Connect/OAuth 2.0 auth wrapper.


Version published
Weekly downloads
0
decreased by-100%
Maintainers
2
Created
Weekly downloads
 

Readme

Source
Cognite logo

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.

Keywords

FAQs

Last updated on 01 Mar 2023

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc