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.

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);
        }
);
share|improve this question
No easy way of doing it. However, as a stop gap, I have added the redirect code in the query.wait function. Again, not the cleanest of solutions. – user1594304 Oct 8 '12 at 3:26

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.