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?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
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.