-
Why when I try to register Kratos (v0.6.3) returns: {
"id": "34305022-8c77-49e8-bbb9-df9cf8978ee4",
"type": "api",
"expires_at": "2021-06-08T22:45:25.567184476Z",
"issued_at": "2021-06-08T22:35:25.567184476Z",
"request_url": "http://127.0.0.1:4433/self-service/registration/api",
"ui": {
"action": "http://127.0.0.1:4433/self-service/registration?flow=34305022-8c77-49e8-bbb9-df9cf8978ee4",
"method": "POST",
"nodes": [...],
"messages": [
{
"id": 4010003,
"text": "Could not find a strategy to sign you up with. Did you fill out the form correctly?",
"type": "error"
}
]
}
} What strategy are we talking about? |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 1 reply
-
https://www.ory.sh/kratos/docs/self-service/flows/user-registration I think it means the self service
I found a fairly old document mentioning strategies: What method did you specify in your kratos.yml? |
Beta Was this translation helpful? Give feedback.
-
I figured it out, the authorization type must now also be sent explicitly 🤣 {
"traits": {
"email": "jo"
},
"password": "my-secret-password",
+ "method": "password"
} |
Beta Was this translation helpful? Give feedback.
I figured it out, the authorization type must now also be sent explicitly 🤣
{ "traits": { "email": "jo" }, "password": "my-secret-password", + "method": "password" }