I have a web app shown in an Iframe on Facebook and I'm using the Graph API to pull some data from the user's profile.
In my app users are required to fill out a short survey form. Now, I'd like to be able to check if the user has already completed the form. I have problems with accessing saved data on my end (don't ask, it's complicated) - so I was wondering whether it was possible to save a variable to the users profile which flags them as having completed my survey.
Something akin to (here I'd be checking the variable value)
$facebook->api('/me/myvariable', 'get', array('access_token' => $access_token));
yeah, I know, this doesn't exist. But is there something in this general direction out there in the Graph API, or some other magic Facbook mumbo-jumbo I could look at?
Thanks!