Reputation: 9293
Am developing a facebook application. There is a functionality to send multifriend app request. When some one tap on multifriend link multfriend popup window appears and they can select friend and send invite. Every thing works perfect in my local server. When i upload the same code to live server, the facebok request dialog that not stop loading. Its not loading friends list also. Am not getting any errors in my console. Please see the loading window
function multifriend_request(userfullname,checkedgame){
//var userfullname = {ldelim}$userfullname{/ldelim};
console.log('user full name',userfullname,checkedgame);
FB.ui({ method: 'apprequests',
title:'Freunde für Bewerbung FC Bayern-Bus auswählen',
message:"Mit BAYERN 3 und dem FC Bayern-Bus ins Stadion!\n"+
userfullname+" bewirbt sich mit seinen Freunden um 11 exklusive Plätze zu einem Heimspiel des\n"+
"FC Bayern München in der Allianz Arena - inklusive Transfer im FC Bayern-Bus."
}, callbackmultifriend_request);
}
I found a thread in stack Facebook app request dialog box keep on loading/busy but not sure about the issue. Please help me to solve this issue, Thanks
Upvotes: 1
Views: 177
Reputation: 9293
I have managed to solve this, it was my mistake, just changed my app settings to my live server address. Earlier it was local server address. Now its working great.Thanks
Upvotes: 0