Web-capable OIDC client handle.
Internal native identifier for the web client.
Launch the authorization flow.
Optional
const web = createOidcWebClient(client);const result = await web.authorize({ prompt: 'login', loginHint: 'user@example.com',});if (result.type === 'success') { // authorized} Copy
const web = createOidcWebClient(client);const result = await web.authorize({ prompt: 'login', loginHint: 'user@example.com',});if (result.type === 'success') { // authorized}
Deregister this web client from CoreRuntime registries and release associated resources.
Call when the web client is no longer needed to avoid handle accumulation.
Resolve the current user handle, if present.
Web-capable OIDC client handle.