We are trying to use S2Member to manage our WP site and memberships for a Flash program that we are launching. We'd like to use S2Member to authenticate the user when they login and remain logged in.
Problem: The Java layer needs to know which user is logged into Wordpress (if any), so it can return the correct data to the flash layer.
Proposed Solution: The cookies that Wordpress should also be included with the requests from Flash to Java. Java could use those cookies to query against the Wordpress DB to obtain the user ID.
What we need to know:
1. Is it possible to get the user ID with the cookies from the DB or file system? Or is the cookie to user mapping only stored in memory?
2. What would be the method of obtaining the user id with the cookies? Could you provide some sample code that we could port to Java?
I'm not seeing a quick explanation / documentation on how to pull session info?
Wordpress comes with standard cookies, and i can read those cookies.
Example : name value
wordpress_fb2bd0842e9484b3403201e8bfb02ad3 admin%7C1328063097%7C983c44c0d712ba8bf7638b2cbb458842
With this info, how can we determine if this is a valid user?