This might be obvious and stupid but can I use JWT authorizer with my custom jwt implementation? Like I have my custom signup / signin endpoint that generates the token. Could someone verify if this will work or will I need to use Lambda authorizers to implement this?
@Ashishkumar Pandey i haven’t done this, but I’m assuming the JWTAuthorizer just makes an api call to a endpoint under the JWT domain to validate the token behind the scene.
Frank
04/27/2022, 9:14 PM
If u implemented that endpoint manually, the JWTAuthorizer should work? 🤞
a
Ashishkumar Pandey
04/27/2022, 9:20 PM
yes, working on it, creating a custom jwks, will update here. if this works, this would be a much better solution than lambda authorizers.