You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi, i have been using the library for my api succesfully, now i want also support tokens issued by another platform (azure AD).
So i need to check if the signature of the token is valid for my own issued tokens AND from the other platform.
Is there an easy way to support this?
i already tried using two middlewares to validate with no luck
What could be the best approach to use multiple instances of gin-jwt as middleware (or gin-jwt + additional auth middleware) and chain it properly (if its possible)?
@gu-hy what i ended up doing was creating a special endpoint where you submit the token from the other provider and after checks and validations it returns a valid token from the current provider. Not the best but worked for my use case albeit it required more work for ui.
Hi, i have been using the library for my api succesfully, now i want also support tokens issued by another platform (azure AD).
So i need to check if the signature of the token is valid for my own issued tokens AND from the other platform.
Is there an easy way to support this?
i already tried using two middlewares to validate with no luck
What the best strategy here? create a new middleware and check azure signature there and then call gin-jwt middleware?
Sorry if the question is off-topic.
The text was updated successfully, but these errors were encountered: