How to use the @solid/oidc-rp.from function in @solid/oidc-rp

To help you get started, we’ve selected a few @solid/oidc-rp examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github solid / solid-cli / src / SolidClient.js View on Github external
async getRelyingParty(identityProvider) {
    // Try to load an existing relying party
    let relyingParty;
    const providerSettings = this._identityManager.getProviderSettings(identityProvider);
    if (providerSettings) {
      relyingParty = RelyingParty.from(providerSettings);
    }
    // Create a new relying party
    else {
      relyingParty = await this.registerRelyingParty(identityProvider);
      this._identityManager.addProviderSettings(relyingParty);
    }
    return relyingParty;
  }
github solid / solid-auth-client / src / webid-oidc.js View on Github external
async function getStoredRp(storage: AsyncStorage): Promise {
  const data = await getData(storage)
  const { rpConfig } = data
  if (rpConfig) {
    rpConfig.store = storage
    return RelyingParty.from(rpConfig)
  } else {
    return null
  }
}

@solid/oidc-rp

OpenID Connect Relying Party client library

MIT
Latest version published 2 years ago

Package Health Score

49 / 100
Full package analysis

Similar packages