
Product
Unify Your Security Stack with Socket Basics
A single platform for static analysis, secrets detection, container scanning, and CVE checks—built on trusted open source tools, ready to run out of the box.
@oada/lookup
Advanced tools
JavaScript utility library to lookup OADA documents such as Well-Known (RFC 5785) resource, e.g., oada-configuration, openid-configuration, etc, and public OADA client registrations
JavaScript utility library to lookup OADA documents such as Well-Known (RFC 5785) resource, e.g., oada-configuration, openid-configuration, etc, and public OADA client registrations.
The library can be installed with yarn
using
yarn add @oada/lookup
The libraries test can be ran with:
yarn test
Fetch a Well-Known (RFC 5785) Resource. The hostname will automatically be parsed from any URL.
hostname
{String} Hostname (or URL) hosting the Well-Known resource being
requested. Sub-domains and ports are be persevered; Protocol, path, query
parameters, and hash are dropped. It is assumed that the Well-Known resource is
hosted with TLS (https) Pull Request appreciated
suffix
{String} Well-Known resource suffix being requested.
options
{Object} containing at least the following properties:
timeout
{Number} Default: 1000 Timeout before HTTP request fails in ms.cb
{Function} Result callback. It takes the form function(err, resource) {}
.
import { wellKnown } from '@oada/lookup';
const options = {
timeout: 500,
};
const resource = await wellKnown(
'provider.oada-dev.com',
'oada-configuration',
options
);
console.log(resource);
Fetch a client registration from an OADA client id.
clientId
{String} The OADA client id to lookup the client registration for. It
takes a form similar to email: id@domain
.
options
{Object} containing at least the following properties:
timeout
{Number} Default: 1000 Timeout before HTTP request fails in ms.cb
{Function} Result callback. It takes the form function(err, registration){}
.
import { clientRegistration } from '@oada/lookup';
const options = {
timeout: 500,
};
const registration = await clientRegistration(
'xJx82s@provider.oada-dev.com',
options
);
console.log(registration);
Fetch a Json Web Key Set (JWKS) from an URI.
uri
{String} The URI containing the desired JWKS document. For example, the
value of the OpenID Connect openid-configuration jwks_uri
property.
options
{Object} containing at least the following properties:
timeout
{Number} Default: 1000 Timeout before HTTP request fails in ms.cb
{Function} Result callback. It takes the form function(err, jwks){}
.
import { jwks } from '@oada/lookup';
const options = {
timeout: 500,
};
const JWKset = await jwks('provider.oada-dev.com/oidc/jwks', options);
console.log(JWKset);
FAQs
JavaScript utility library to lookup OADA documents such as Well-Known (RFC 5785) resource, e.g., oada-configuration, openid-configuration, etc, and public OADA client registrations
We found that @oada/lookup demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 8 open source maintainers collaborating on the project.
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.
Product
A single platform for static analysis, secrets detection, container scanning, and CVE checks—built on trusted open source tools, ready to run out of the box.
Product
Socket is launching experimental protection for the Hugging Face ecosystem, scanning for malware and malicious payload injections inside model files to prevent silent AI supply chain attacks.
Research
/Security News
The Socket Threat Research Team uncovered a coordinated campaign that floods the Chrome Web Store with 131 rebranded clones of a WhatsApp Web automation extension to spam Brazilian users.