I am running a simple query on Facebook user table var query = FB.Data.query('select name, first_name, last_name, sex, email from user where uid='+uid); The data retrieved from the query, I want to pass to another servlet e.g. window.location = "ExampleServlet?name="+response[0].name+"&email="+response[0].email;
My challenge is that the query.wait(function(response) is asynchronous. So, when the query.wait goes in the background processing mode, my JSP already re-directs the page to ExampleServlet mentioned above. And, I never get the results back for response[0].name, response[0].email etc.
I have also tried FB.api call with little luck
FB.api(
{
method: 'fql.query',
query: 'select name, first_name, last_name, sex, email from user where uid=me()'
},
function(response) {
alert("Alert 6: :Name: "+response[0].name+" :first_name: "+response[0].first_name
+" :last_name: "+response[0].last_name+" :sex: "+response[0].sex
+" :email: "+response[0].email);
}
);