-
Notifications
You must be signed in to change notification settings - Fork 50
Description
So I was messing around with the python FDK and I noticed that there's no inbuilt wrapper around cookies. This isn't a huge problem because python's http lib deals with them swimmingly, but that generates some fluff code. Would it be possible to add a way to set and access cookies in the same way as http headers (ctx.Cookies() and return response.Response(ctx,"returned data", headers={"header1":"foo"},cookies={"cookie1":"bar"}) perhaps?) I originally opened a similar issue on the python fdk, and I was recommended to open one here so that if such a feature were to become supported it would be on all languages, not just python.
I reckon a fair few people would be using cookies anyway. If python supports them so well, I can't see node or ruby being far behind. Would this be possible? Would it be worth your time?