karolherbst / Gamekeeper-Framework

Library for hooking up game stores and merging them into one single library
GNU Lesser General Public License v2.1
2 stars 0 forks source link

cookie handling #76

Closed karolherbst closed 10 years ago

karolherbst commented 10 years ago

currently we don't reuse cookies between calls, which means, that cookies has to be stored and passed for future calls.

If we would start saving cookies globally, we might get problems implement features for handling different accounts for same store, also global cookie handling makes threading much harder and would decrease performance, because of locking.

I am unsure how to handle them. We have to decide on this, because currently it ins not possible to implement oauth or openid authentications without hacky tricks.