While developing a Google App Engine app, how can client code (i.e., javascript) detect if a user is logged in or not? Note I am referring to detection on the client (not server).
Tell me more
×
Facebook - Stack Overflow is a question and answer site for
facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community.
Facebook engineers participate here along with the best Facebook developers in the world.
If you have a technical question about Facebook, this is the best place to ask.
|
|
For something like this, you really need a custom solution. The Users API will tell you what you need to know on the server-side, but it's up to you to send this information to the Javascript on the client-side. I usually use add a snippet to the template. Something like:
If the username variable is an empty string, the user is not logged in, otherwise, you have their username ready to go. Of course you can always just use a boolean value, but this supports a bit more functionality if you need it later. |
|||
|
|
|
Try checking out the Users API. http://code.google.com/appengine/docs/java/users/overview.html |
|||
|
|