-
Hello,
Any help would be greatly appreciated. I am using kratos v0.8.2-alpha.1 & next 12.0.1. Here is the logs from my nextJs app. CSRF node I received in /self-service/registration/browser response POST request PayLoad for SignUP Thanks in advance :) |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 1 reply
-
I was able to solve this issue. The Cookie was missing in the header, it was due to the setting kratos.yaml
|
Beta Was this translation helpful? Give feedback.
-
I have same issue. I checked headers and cookies was there. |
Beta Was this translation helpful? Give feedback.
I was able to solve this issue. The Cookie was missing in the header, it was due to the setting kratos.yaml
cookies: domain: mydomain.com path: /auth same_site: Lax
After I changed it to the below one it worked.
cookies: domain: mydomain.com path: / same_site: Lax