enough-winter-51484
01/14/2022, 2:15 PMsameSite = http.SameSiteLaxMode
isset when it is in dev mode.high-optician-2097
enough-winter-51484
01/14/2022, 3:30 PMproud-plumber-24205
01/14/2022, 4:15 PMenough-winter-51484
01/14/2022, 4:43 PM@ory/kratos-client
node package. I use the initializeSelfServiceRegistrationFlowForBrowsers
and the submitSelfServiceRegistrationFlow
methods. The problem is, the requests (with axios) are not handling credentials by defualt. You have to set the withCredentials
parameter. Like:
sdk.initializeSelfServiceRegistrationFlowForBrowsers(undefined, {
withCredentials: true,
})
and:
sdk.submitSelfServiceRegistrationFlow(id, payload, {
withCredentials: true,
})
high-optician-2097
enough-winter-51484
01/15/2022, 9:39 AMhigh-optician-2097