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.

This question is an exact duplicate of:

for(var i=0;i<commentObjectLength;i++){
var fbFeedID = commentObject.OwnCommentList[i].fbFeedID;
var OwnCommentID = commentObject.OwnCommentList[i].OwnCommentID;
var accessToken = commentObject.OwnCommentList[i].accessToken;
var commentText = commentObject.OwnCommentList[i].commentText;
alert("Hiii"); //  >>>>>>>1
        FB.api('/'+fbFeedID+'/comments','post',{
                    message: commentText,
                    access_token : accessToken
                },function(response){
                    if (!response || response.error){
                        //alert(response.error.message);
                    }else {
                        alert("Hello");//  >>>>>>>2
                        alert(response.id); //  >>>>>>>3
                    }
                });
}

Now to tell in simple way ., I am expecting out in alert like
1-> Hiii
2-> Hello
3-> some response id
4-> Hiii
5-> Hello
6-> some resonse id

But in real i am getting out like
1-> Hiii
2-> Hiii
3-> Hiii
continues till loop size . . . .
8- > Hello
9-> some response id
10- > Hello
11-> some response id continues . . .

Problem is all time the last date of loop will go to facebook and comment on feed. not seperatly.
So please any one help me solve this issue.
I am struggling lot. (Hope every one can understand problem, anything extra info needed plz ask)
Thakns in Advance,

share|improve this question

marked as duplicate by ChrisF May 4 at 12:06

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

1 Answer

It is because the callback function will call only when facebook give the response to your request.

Therefore the loop continue to alert Hiii message until there is a callback come up.

If you want to do what you expected. You should have some checking before you post another request in your loop.

share|improve this answer
Agreed. Good solution. – DMCS Feb 10 '12 at 11:06

Not the answer you're looking for? Browse other questions tagged or ask your own question.