-
Hello, I currently create a Flutter application connected to Ory/Kratos. In the documentation it's said to not use the api endpoints for web developpement. But when I test the browser url on my web application I got an error:
I request health/alive and health/ready route work correctly. If I run api endpoint in the browser I got this logical error:
Did I miss something or it is not possible to integrate the redirection browser route for flutter ? Tell me if you need more details or what ever you need. Thanks a lot and you're project is so great ! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 4 replies
-
You get the error message:
You are using AJAX to submit the form. This is not supported right now. You need to submit a regular HTML form. Do not use AJAX. Do not use fetch. Let the user click the submit button and do not do anything. AJAX will be better supported very soon. |
Beta Was this translation helpful? Give feedback.
You get the error message:
You are using AJAX to submit the form. This is not supported right now. You need to submit a regular HTML form. Do not use AJAX. Do not use fetch. Let the user click the submit button and do not do anything. AJAX will be better supported very soon.