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}
Resolve the current user handle, if present.
Web-capable OIDC client handle.