lively-keyboard-69081
09/06/2023, 2:08 PMmeta
property in the response from fetching the “Registration with username/email and password” input fields to be empty? I’m getting a response like so:
{
"id": "2e98b50e-01a0-4623-bd73-833294a5daec",
"type": "browser",
"expires_at": "2023-09-06T14:54:35.184710421Z",
"issued_at": "2023-09-06T13:54:35.184710421Z",
"request_url": "<http://127.0.0.1:4433/self-service/registration/browser>",
"ui": {
"action": "<http://127.0.0.1:3000/.ory/kratos/public/self-service/registration?flow=2e98b50e-01a0-4623-bd73-833294a5daec>",
"method": "POST",
"nodes": [
...
{
"type": "input",
"group": "password",
"attributes": {
"name": "traits.emails",
"type": "text",
"disabled": false,
"node_type": "input"
},
"messages": [],
"meta": {} <----------THIS IS EMPTY!
},
...
And I would expect something like:
{
"id": "2e98b50e-01a0-4623-bd73-833294a5daec",
....
....
{
"type": "input",
"group": "password",
"attributes": {
"name": "traits.emails",
"type": "text",
"disabled": false,
"node_type": "input"
},
"messages": [],
"meta": { <----------- THIS NOT BEING EMPTY!
"label": {
"id": 1070002,
"text": "E-Mail",
"type": "info"
}
},
We are working on setting up a self-service UI with self-hosted Kratos, I can of course provide more details if this is too vaguelively-keyboard-69081
09/12/2023, 1:54 PM