I have a Play site that's part of a larger site that uses PHP. I would like to have the other site to behave different for users who logged in in Play (e.g., display a "logout" link instead of "login").
What is the correct way to determine, in a 3rd party server app, whether a user is logged in to Play or not? Should I just check for the existence of the PLAY_SESSION cookie?
I see that logging in creates this cookie, and logging out clears it, so it seems to be what I'm looking for.