CaptainPhoton
06/24/2022, 4:50 PMsendEmail
override in addition?CaptainPhoton
06/24/2022, 4:55 PMrp
06/24/2022, 4:56 PMCaptainPhoton
06/24/2022, 4:59 PMBiaz
06/24/2022, 5:04 PMCaptainPhoton
06/24/2022, 5:18 PMinput
is different from the passwordless login case, and also different from the other email verification sending function. As far as I can tell, the link is in input.emailVerifyLink
and the email is in input.user.email
CaptainPhoton
06/24/2022, 6:09 PM[BR1]Sky
06/26/2022, 2:54 AMrp
06/26/2022, 4:39 AMconstantinos
06/26/2022, 8:57 AMCaptainPhoton
06/26/2022, 11:31 AMZeferiniX
06/27/2022, 3:07 AMrp
06/27/2022, 4:15 AMZeferiniX
06/27/2022, 4:17 AMrp
06/27/2022, 4:17 AMBeeMoe
06/27/2022, 7:36 AMEdwinN1337
06/27/2022, 9:37 AMCaptainPhoton
06/27/2022, 10:13 AMBruno Diferente
06/27/2022, 1:23 PMAPIs
with Axios
directly to authenticate users,
I'm having issue with thirdParty
implementation. the state
query is missing in my callback page after
using axios with url : ...../auth/authorisationurl?thirdPartyId=github
and GET
method will always redirect to default callback page
then it ends by redirection to signin?error=signin
Rob Schilder
06/27/2022, 3:24 PMsameSite: lax
the tokens are not passed to the request and therefore all requests to our supertokens backend are unauthorized.
supertokens.init({
...frontendConfig().appInfo,
cookieHandler: capacitorCookieHandler,
})
The cookies are saved in localStorage. Do we need to create our own interceptor to add the cookies to the request headers?mantis
06/27/2022, 5:18 PMmantis
06/27/2022, 5:19 PMporcx
06/28/2022, 5:43 AMporcx
06/28/2022, 5:44 AMconstantinos
06/28/2022, 8:08 AMAccess to fetch at 'https://staging-auth.domain.com/auth/session/refresh' from origin 'http://staging-beta.domain.com:9000' has been blocked by CORS policy: Response to preflight request doesn't pass access control check: The 'Access-Control-Allow-Origin' header has a value 'https://staging-app.domain.com' that is not equal to the supplied origin. Have the server send the header with a valid value, or, if an opaque response serves your needs, set the request's mode to 'no-cors' to fetch the resource with CORS disabled.
staging-beta
is local with custom homain in hosts. staging-app
is in the cloud and thats where the user logins.
Usually happens when I close the browser and then open it directly on staging-beta
locally.codingtomato
06/28/2022, 1:46 PMPPaii
06/28/2022, 2:14 PMrp
06/28/2022, 2:31 PM