Stina
Stina

Reputation: 509

Using Cookies for authenticated users

Can anyone tell me of good tutorials that will explain how to generate a cookie for when a user logs into my system through Foursquare, so I can keep track of their information? Or is there any other methods which I should look at?

Upvotes: 1

Views: 214

Answers (1)

Benson
Benson

Reputation: 22847

To store semi-sensitive data, you should use a session variables. Sessions are stored on the server, with a unique cookie sent to each unique client. This way, you have control over what's in the session variable, but the user can still be uniquely identified. For info on sessions in app engine, see this post.

Upvotes: 3

Related Questions