<@U01MTU9E4CF> getting 500 error after placing an ...
# talk-kratos
b
@proud-plumber-24205 getting 500 error after placing an after registration web hook. The web hook is just a GET request. The web hook configuration.
Copy code
{
  "hook": "web_hook",
  "config": {
    "method": "GET",
    "response": {
      "ignore": true
    },
    "url": "<https://0561-24-232-156-199.sa.ngrok.io>"
  }
}
@modern-eye-74914 @proud-plumber-24205 Adding a jsonnet body solved my issue. It seems like is a mandatory field.
m
seems like a bug though because that doesnt make sense for some HTTP methods like get
b
agree
Also the hook was executed twice. After the registration a hook is executed to register the user in my database, and I got two requests from Ory.
m
Huh. I do see some retry logic in there..i wonder if it was retrying
im not an expert, just someone working on the same exact thing you are at the moment haha
b
is strange because it reach my API succesfully both times.
p
I think it might have just retried the request. Are you sure your service responded with a status 200
b
Hey @proud-plumber-24205, yes I'm sure, is just a dummy endpoint that return a hardcoded string.