rp
03/01/2022, 6:13 PMvikas2cool21
03/01/2022, 6:14 PMvikas2cool21
03/01/2022, 6:14 PMprachi
03/03/2022, 1:35 PMprachi
03/04/2022, 9:32 AMrp
03/04/2022, 9:33 AMBruno Diferente
03/07/2022, 1:55 PMSupertokens
cookies and extra cookies to front end, however when we implemented thirdParty auth via social media , these cookies are always rejected and i can only access Supertokens
ones , note i need these cookies to communicate to other service.rp
03/07/2022, 1:56 PMOrszi
03/07/2022, 1:56 PMconst currAccessTokenPayload = req.session!.getAccessTokenPayload();
await req.session!.updateAccessTokenPayload({ newKey: 'newValue', ...currAccessTokenPayload });
and in frontend i cannot see it in the const { accessTokenPayload } = useSessionContext();
, but in the sAccessToken cookie it already isBruno Diferente
03/07/2022, 1:57 PMBruno Diferente
03/07/2022, 1:58 PMSupertokens
cookies with extra cookies.
but as soon as we implemented third party these extra cookies are all rejectedrp
03/07/2022, 1:59 PMNathanSkoot
03/08/2022, 10:24 AMrp
03/08/2022, 10:25 AMNathanSkoot
03/08/2022, 11:03 AMprachi
03/09/2022, 4:03 AMrp
03/09/2022, 4:24 AMscherbatsky.jr
03/09/2022, 7:56 AMSuperTokens core threw an error for a GET request to path: '/apiversion' with status code: 404
Deployed through swarmpitrp
03/09/2022, 8:10 AMscherbatsky.jr
03/09/2022, 8:39 AMaxios.defaults.baseURL = '/api'
SuperTokens.addAxiosInterceptors(axios)
Doing above will add '/api in axios request but wont add when I call SuperTokens.signOut(). Is this normal?rp
03/09/2022, 8:41 AMsignOut
doesn't use your axios instance. You need to provide the apiBasePath
in the appInfo object during init to give it /api/auth
and then sign out function will call /api/auth/signout
Jim Gambit
03/15/2022, 7:04 AMrp
03/15/2022, 7:05 AMrp
03/15/2022, 7:05 AMJim Gambit
03/15/2022, 7:06 AMJim Gambit
03/15/2022, 7:06 AMrp
03/15/2022, 7:06 AMJim Gambit
03/15/2022, 7:06 AMrp
03/15/2022, 7:07 AMmarshmalon
03/19/2022, 12:38 AM