1

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 enter image description here

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

Community
  • 1
  • 1
Dibish
  • 9,133
  • 22
  • 64
  • 106
  • I've seen this before in cases where I was proxying through Charles on production sites that were SSL secured. You using a proxy, or are on SSL? – Saeven Jan 30 '14 at 04:26
  • Am not integrated the app to facebook, still testing with server itself. Yet to buy an SSL for the domain. Testing with my domain http://fcbbus.brainpirates.de/. Sorry i dont have much idea about the proxy settings you mentioned. – Dibish Jan 30 '14 at 04:36

1 Answers1

0

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

Dibish
  • 9,133
  • 22
  • 64
  • 106