Replies: 1 comment
-
actually i should have used api/graphql so will open new thread for the issue |
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
Uh oh!
There was an error while loading. Please reload this page.
-
Hi,
We have configured the default tenant as openid server and other tenants as clients, with cookie authentication users are authenticated when redirected to server tenant and are able to login to client tenant subsequently.
when used postman as a client and provided the flow details clientid, clientsecret and other params I was able to successfully get tokens for the specific client (access_token and Id_token). but when using these tokens to access the client or the default tenant using postman the request is not being authorized the protected method will redirect me to login page although i used the tokens i got from the flow.
Please note I already added this recipe to the server and run
{
"name": "OpenIdValidationSettings",
"Audience": "my_recipient",
"Authority": "https://localhost:44348"
},
{
"name": "OpenIdScope",
"Description": "A scope to provide api for remote clients",
"DisplayName": "admin openid profile",
"ScopeName": "api",
"Resources": "my_recipient"
also i tried the token validation from the admin settings its giving me "Either a tenant or an authority must be registered."
Pls. help me how to properly configure to validate the access tokens
Beta Was this translation helpful? Give feedback.
All reactions