Hey there 🙂 I've backend in Python frontend in N...
# support-questions-legacy
a
Hey there 🙂 I've backend in Python frontend in NextJS (React). I'm trying to request from frontend to backend with this code:
Copy code
await axios.put(`${API_ENDPOINT}/prompt/audit/${promptId}/feedback`, {
        feedback,
      }, { withCredentials: true });`
And gets this error
Copy code
File "//Python/3.9/lib/python/site-packages/supertokens_python/recipe/session/framework/flask/__init__.py", line 60, in wrapped_function
    raise Exception("Should never come here")
Exception: Should never come here
On the backend I have
@verifySession
annotation What am I doing wrong?