correct keys in .well-known/jwks.json #2612
Unanswered
killjoy2013
asked this question in
Q&A
Replies: 1 comment
-
Answered, I think, in related issue: #2619 |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Tyring to activate jwt authentication on router 1.10.3
this is how I ceated my private & public keys;
openssl genrsa -out private.pem 3072
openssl rsa -in private.pem -pubout -out public.pem
I needed to create pkcs8 file from my private.pem like this;
openssl pkcs8 -in private.pem -topk8 -nocrypt -out pk8key.pem
here are my keys & token;
this is how I create the token;
token is verified on token.dev like this;
So far so good. However, I'm getting Invalid Signature on apollo studio
can this be any issue on
.well-known/jwks.json
? this is how I produce itit displays like this;
Can it be about the keys in
.well-known/jwks.json
? What keys should I have here?Thanks
Beta Was this translation helpful? Give feedback.
All reactions