Hi everyone, I have an extra question regarding `O...
# general
h
Hi everyone, I have an extra question regarding
Ory Actions
/ Hooks in Kratos. How can i do GET request where i have a variable endpoint? e.g.
api/users/<UUIDv4>
where the
UUIDv4
is
ctx.identity.id
b
That's not possible out of the box, but you can always proxy the request through a generic endpoint and forward it to the specific endpoint. E.g. define a webhook to
<http://my-service.com/api/users|my-service.com/api/users>
->
<http://my-service.com/api/users/|my-service.com/api/users/><UUID>
no not at the moment
h
Oka, ty I'm not a fan of using POST request to fetch data. 🤔 I know some does it
b
What do you mean by fetch data?
h
At the moment I'm using the hook at login after. I watch to fetch data not post data