Ory Client Returning 404 #288
-
I have been trying to use the Is there any idea on how i can fix this or if i'm missing to set up something that wasn't included in the docs? |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 3 replies
-
Update: So i tried the https://www.ory.sh/docs/reference/api#tag/identity/operation/listIdentities API, i'm guessing the configuration works (sort of) because i get a different kind of error now Although, i am unsure, looking at the error message, on what access credentials are needed to access my resource. and it returns an empty list (expected since i have no identities created yet). still trying to see how this issue can be fixed |
Beta Was this translation helpful? Give feedback.
-
for reference, this is my code:
which was gotten from: https://github.com/ory/sdk/blob/master/clients/client/python/docs/IdentityApi.md#list_identities i basically just replaced the host and access token with my specific ones |
Beta Was this translation helpful? Give feedback.
-
i found the issue. it comes from this code i used from the docs:
basically, what this ends up doing is overwriting the configuration with only access taken as the resource.
here, i am making one configuration object that will take the two parameters (host and access_token) instead. |
Beta Was this translation helpful? Give feedback.
i found the issue. it comes from this code i used from the docs:
basically, what this ends up doing is overwriting the configuration with only access taken as the resource.
doing this instead fixes the issue:
here, i am making one configur…