kodeschooler

Results 11 comments of kodeschooler

Can someone please point me to some documentation for this? For example, do I not need protected routes with this? Is the suggestion to use useAuth in each component that...

@pamapa thanks for the reply. One thing I'm having trouble with is I have a hook that creates an instance of axios with some interceptors to add the access token...

This is the lib the auth context is coming from: https://github.com/bjerkio/oidc-react It returns this: ``` export interface AuthContextProps { signIn: (args?: unknown) => Promise; signInPopup: () => Promise; signOut: ()...

@Badisi thanks for the quick answer. Do you have source code for your demo app and/or library? I'm using a 3rd party wrapper library in react that's based around the...

@Badisi Or I should say where in your app are you doing that (i just saw that you had a link to your codebase)? My problem is the UserManager gets...

Thanks @Badisi. I was only planning on storing one setting but it actually might be better to simply store the entire thing. But I think I got what you're saying....

@Badisi I liked the idea of saving the entire settings object in storage, but I'm getting a circular reference error when trying to stringify it. For example: Part 1: ```...

@Badisi Gotcha. So far changing the ```acr_values``` during application usage is my only issue. I'll just stick with storing the tenant id based on that workflow you outlined- which makes...