Fork me on GitHub
#aws
<
2018-05-23
>
Geoffrey Gaillard08:05:51

Answer to the question above: how to decode/unsign a JWT in Clojure https://gist.github.com/ggeoffrey/b72ed568be4914a990790ea6b09c2c66

👍 4
valtteri09:05:40

Good stuff. Another option is to let API-Gateway do the work. The GW knows out-of-box how to verify tokens from Cognito and it puts the payload into downstream requests.

👍 8
valtteri09:05:41

That adds of course one more hop.

Geoffrey Gaillard10:05:16

Didn't knew that 😕 but anyway some of my client<->server requests goes through websockets and my backend already runs on an EC2 cluster behind an ELB, so decoding JWT in my app seems to take me less time to add (better short-term ROI) then migrating the existing stuff to GW.