MCPcopy
hub / github.com/authts/oidc-client-ts / signinSilentCallback

Method signinSilentCallback

src/UserManager.ts:391–395  ·  view source on GitHub ↗

* * Notify the parent window of response (callback) from the authorization endpoint. * It is recommended to use UserManager.signinCallback instead. * * @returns A promise * * @see UserManager.signinCallback

(url = window.location.href)

Source from the content-addressed store, hash-verified

389 * @see {@link UserManager.signinCallback}
390 */
391 public async signinSilentCallback(url = window.location.href): Promise<void> {
392 const logger = this._logger.create("signinSilentCallback");
393 await this._iframeNavigator.callback(url);
394 logger.info("success");
395 }
396
397 /**
398 * Process any response (callback) from the authorization endpoint, by dispatching the request_type

Callers 3

signinCallbackMethod · 0.95
sample-silent.jsFile · 0.80

Calls 3

callbackMethod · 0.65
infoMethod · 0.65
createMethod · 0.45

Tested by

no test coverage detected