I read that Send cookies with curl works, but not for me.
I have a REST endpoint as:
REST
class LoginResource(restful.Resource): def get(
This worked for me:
curl -v --cookie "USER_TOKEN=Yes" http://127.0.0.1:5000/
I could see the value in backend using
print request.cookies