AntonyBush
10/14/2022, 4:06 PMRessiject
10/14/2022, 4:41 PMjin49
10/14/2022, 9:11 PMrp
10/15/2022, 4:08 AMggishant
10/16/2022, 11:18 AMcode
in the /signinup endpoint, and I'm getting this errorshorthair_[]
10/16/2022, 11:19 AMshorthair_[]
10/16/2022, 11:20 AMshorthair_[]
10/16/2022, 11:20 AMshorthair_[]
10/16/2022, 11:21 AMview.py file in django project
from rest_framework.response import Response
from rest_framework.decorators import api_view
from supertokens_python.syncio import get_users_newest_first
from .serializers import GetUserSerializer
@api_view(['GET'])
def get_users(request):
firstguys = get_users_newest_first()
serializer = GetUserSerializer(firstguys)
return Response(serializer.data)
bert2002
10/16/2022, 2:46 PM@app.get("/bla")
async def get_session_info(session: SessionContainer = Depends(verify_session())):
return true
Chunkygoo
10/16/2022, 10:55 PMChunkygoo
10/16/2022, 11:25 PMChunkygoo
10/17/2022, 2:01 AMheatbr
10/17/2022, 3:08 AMrp
10/17/2022, 4:05 AMrp
10/17/2022, 4:06 AMabhisheksinghkapoor
10/17/2022, 6:40 AMChunkygoo
10/17/2022, 7:17 AMRxThorn
10/17/2022, 1:44 PMUncaught DOMException: Failed to execute 'atob' on 'Window': The string to be decoded is not correctly encoded.
The above error occurred in the <SessionAuth> component
. Has this happened to anyone before?
I just created two projects with npx create-supertokens-app@latest
, the first one React+NestJS and the other Vue+NestJS, always the same errorphacies
10/17/2022, 8:09 PMcsjaction
10/17/2022, 9:12 PMrp
10/18/2022, 5:21 AMrp
10/18/2022, 5:22 AMChunkygoo
10/18/2022, 5:46 AMkabin
10/18/2022, 6:28 AMChunkygoo
10/18/2022, 7:02 AMChunkygoo
10/18/2022, 7:24 AMsegidev
10/18/2022, 11:44 AMEmailPassword.signIn
with no logic in between or anything hooking in.nkshah2
10/18/2022, 12:01 PMJixxus
10/18/2022, 12:43 PM