https://www.ory.sh/kratos/?utm_source=github&utm_medium=bann...
Show HN: Ory Kratos – Open-source identity server written in Go
21–30 of 67 posts
Re: Show HN: Ory Kratos – Open-source identity server written in Go
#22Re: Show HN: Ory Kratos – Open-source identity server written in Go
#23Re: Show HN: Ory Kratos – Open-source identity server written in Go
#24One of the co-maintainers here. Ory Kratos has been in development since 2018 and is finally out of beta! If you have any questions about the project, tech, flows, or Ory as a whole I’m here to help :)
Sorry for the rant and what may sound like a very negative comment, I wrote this quickly. I think it would be great to right away stop using the term "identity" so freely and use something else, or at least clearly explain what do you understand for identity. I think it would be great for programmers to start disambiguating the concept, and I think projects like ory have a good opportunity (that you yourselves created and built, of course!) to make it a bit better.
Re: Show HN: Ory Kratos – Open-source identity server written in Go
#25I've only ever dealt with auth a monolith with sessions, so I'm pretty blind here.
Any resource anyone would recommend would also be greatly appreciated!
Re: Show HN: Ory Kratos – Open-source identity server written in Go
#26Earlier quoted context omitted.
Is there an UI for the identity management like defining roles and assigning identities to roles? I see the API part. But is there an UI part, besides the self-service account management? Because that general management interface is the missing piece in many of the identity services.
The system is API only (headless) but we have reference implementations available. For a management UI you can use Ory Cloud :) For permissions, that’s a different service: https://github.com/ory/keto
Re: Show HN: Ory Kratos – Open-source identity server written in Go
#27I know stating this silly, but it really bugs me seeing the link below at GitHub repo page. https://www.ory.sh/kratos/?utm_source=github&utm_medium=bann...
Re: Show HN: Ory Kratos – Open-source identity server written in Go
#28Re: Show HN: Ory Kratos – Open-source identity server written in Go
#29I learned so much about AuthN and AuthZ from reading Ory code and docs. Sometimes it seems like Ory is the only web auth stuff on the internet that’s intended for you to understand how the whole system works, rather than telling you just enough to get you to use/buy their proprietary software (Auth0, Okta, etc). I read a few books as well but they were extremely poorly done. I eventually also read the entire OpenId C…
Re: Show HN: Ory Kratos – Open-source identity server written in Go
#30As someone who knows very little about serious identity management, does something like Ory handle the auth part (in a variety of schemes), and then your application interacts with Ory somehow to validate the auth? I guess I'm most confused about where the connection between Ory and the application server is. I've only ever dealt with auth a monolith with sessions, so I'm pretty blind here. Any resource anyone would…
There might be none. The response from an identity provider (Ory) is signed and encrypted, is given to the user who is being authenticated and then the user brings it to the application. The process usually happens via browser redirects, but can be more manual. The response contains information about who the user is, their identifiers and properties. It is totally possible to have a scenario where the application is air-gapped.
There might be some interaction if the application wants to enrich the passed response.
I cannot suggest any books, but you could search about SAML2, OpenID Connect (oidc), identity providers and service providers.