-
Hi Everyone, I have a case similar to this one, which we already solved. Here is how our Orchard Core 1.8.3 microservices are set up: Our Environment:
Our Flow:
Maybe @kevinchalet (sorry for the direct mention) can help us understand what we configured wrong. Thank you Here some screenshots:
SSO Book Application How we get the |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Hi everyone, In the end, we fixed the problem. It was caused by a missing The error "Invalid_token. The specified token cannot be used with this resource server" was not really clear in this case, maybe @kevinchalet could use a more specific error. I don't know if it's possible for you to intercept this specific case. Thank you |
Beta Was this translation helpful? Give feedback.
Hi everyone,
In the end, we fixed the problem. It was caused by a missing
Scope
when we retrieved theBearer Token
in the call at point 4 (here). However, the Bearer Token for the call betweenBooks
andUsers
was incomplete. The missing Scope wasBooks_SSO
🤯.The error "Invalid_token. The specified token cannot be used with this resource server" was not really clear in this case, maybe @kevinchalet could use a more specific error. I don't know if it's possible for you to intercept this specific case.
Thank you