2013-07-05 71 views
0

我仍然是編程的一個小老闆,所以如果解決方案應該是明顯的原諒我。Facebook邀請之門 - 我需要添加哪些代碼?

我同時設法找到在FB開發者的網站這個功能:

function sendRequestViaMultiFriendSelector() { 
    FB.ui({method: 'apprequests', 
     message: 'My Great Request', 
     redirect_uri: 'http://www.google.com', 

    }, requestCallback); 
    } 

並取得實際窗口調用函數彈出。

現在我所缺少的是如何確保用戶確實邀請某人,如果他確實將他轉發給了某個頁面,並且如果不將他轉發給頁面b?

在此先感謝。

-Gerd

+0

你看的是什麼函數返回的文檔?您應該能夠從中找出 – Igy

+0

感謝您指出正確的方向。 – user2554295

回答

0

好視IGY指着我,我發現基本上是正確的方向我一直在尋找在這裏:

"Request Dialog" requestCallback when clicking Cancel or Close button

因此,對於每個人都需要一個像門,這將是代碼去:

function sendRequestToManyRecipients() { 

    FB.ui({method: 'apprequests', 
     message: 'My Great Request', 

    }, requestCallback); 
    } 

    function requestCallback(response) { 
    if(response && response.request) { 
    // Here, requests have been sent, facebook gives you the request and the array of  recipients 
    //console.log(response); 
    location.href='success.php'; 
} else { 
    location.href='cancel.php'; 
} 

希望幫助!

乾杯,

格爾德

相關問題