Questions tagged [kratos]

9 questions
2
votes
1 answer

protobuf FieldMask unmarshalling in Go

So I'm using kratos framework with Go and my API definition is: rpc UpdateMeeting (UpdateMeetingRequest) returns (UpdateMeetingReply) { option (google.api.http) = { patch: "/v1/meetings/{meeting_id}" body: "*" }; }; And the…
1
vote
1 answer

Ory Kratos settings flow not successfully changing password

I have created my own UI for the Ory Kratos settings flow. The problem I am having is that after submitting the flow, although the returned messages say that my settings have been updated successfully, my new password is not reflected and I haven't…
TheHiggsBroson
  • 1,410
  • 1
  • 11
  • 19
1
vote
1 answer

Ory Kratos deployment won't start

I have been trying to start an Ory Kratos deployment, but it keeps running into one issue. The pod keeps crashing and when I get the logs, this is the message. The configuration contains values or keys which are invalid: identity.schemas.0.url: ^--…
ninety-ninehundred
  • 126
  • 1
  • 3
  • 8
0
votes
0 answers

Ory Kratos Settings flow - 405 Method not allowed

I want to make a post request in Angular using the http client against the /self-service/settings/browser flow. However, I get the undocumented error "405 Method Not Allowed". Can anyone help me further on what the error could be? I am using Ory…
Tom
  • 65
  • 1
  • 3
  • 11
0
votes
1 answer

"Unable to locate the resource" error in kratos

I am new to Kratos and I want to create a simple authentication system using Kratos, where registration/ login will work with only username and password nothing else. but when I try to POST the data for register, I get this error. { "error": { …
zeak
  • 13
  • 3
0
votes
1 answer

Golang Kratos middleware, access operation

We are using Kratos for development of our grpc/http APIs in golang. I am trying to implement a middleware and below are the ServerOptions that I am passing. var opts = []http.ServerOption{ http.Middleware( …
XCEPTION
  • 1,671
  • 1
  • 18
  • 38
0
votes
0 answers

Micronaut security with custom authentication with pre-existing cookie

I am trying to create a session using pre-existing cookie. However, dont seem to find any way to configure micronaut application. Ideal flow Browser calls a rest API Server detects no session (Unauthenticated) Request is intercepted and login is…
S M
  • 1
0
votes
1 answer

Kratos- Social sign-in - How to use an oidc provider having a self signed signature?

I'm trying to connect my hosted Kratos with an OIDC provider that has a non trusted certificate. Is there an elegant way to fill to Ory Kratos a list trusted CA certificate ? I'm facing this error when connecting to my app with my custom oidc…
Youssouf Maiga
  • 6,701
  • 7
  • 26
  • 42
-1
votes
0 answers

about making 2 seperate instance in kratos

Suppose I wanted to create 2 entirely different schemas having 2 different custom login methods for 2 different apis, like one for end user and one for internal users, will it cause any issues? like will I have to create separate kratos instance for…