* * 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)
| 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 |
no test coverage detected