pamapa
pamapa
We just did it at the same time :-) See my MR #622... Additionally i have add a check for `includeIdTokenInSilentRenew`... I will close this MR without merging...
I thought it stall and the implementation is duplicated in another MR. See #622. Hope that is ok for you.
@DASPRiD Would be really cool if you can find some time in the next few weeks to fix this.
The development process is driven by @DASPRiD , but currently on hold because he had no time to finish. The way to implement should be agreed on. See MR #434....
You can see if the id_token_hint is sent as parameter, when using your browser `Dev window` and watching the https requests in the network tab...
you can register on events. See https://github.com/authts/oidc-client-ts/blob/a6ee4a60bc42d6c5c41f84c34a31728cfb571324/src/UserManager.ts#L107: - access token expiring - access token has expired - ...
See my answer here https://github.com/authts/react-oidc-context/issues/460
This library does not contain `currentUser: User;`. You will need to provide much more context. First verify where the error occurs (in which code, yours, a library, which...)
The removed clock service did this: ``` export class ClockService { getEpochTime() { return Promise.resolve(Date.now() / 1000 | 0); } } ``` The refactor simplified the code to directly use...
> In oidc-client-js, people used it to make a server-side call to get the correct time. Thanks for helping. I am unaware of that feature, can you give me a...