2011-09-16 69 views
1

這是我的第一個問題,並在Stackoverflow,但我必須說,這是超級有趣和有用的。 SO回到這一點:在apprequest中讀取數據參數php

我想做一個Facebook apprequest邀請人加入我的應用程序,這樣做接受請求的人和生成它的人將獲得積分獎勵。

這是我的代碼:

function amigo(id){ 
    FB.ui({method: 'apprequests', message: 'AppMessage', title: 'reqTitle' , data: '<?php echo "fuente=".$id?>'}); 
    } // where fuente = my facebook uid 

我想讀在PHP中的數據參數,以便我可以看看我的數據庫爲UID和分配點,但我不知道怎麼做。我已閱讀Facebook API,但事實是,我無法理解這一部分。

任何幫助將不勝感激,因爲我對交付時鐘運行。

感謝,

回答

0

我實現了它在Javascript如下:

function share() { 
    function doAfter(r) { 
     if(r && r.to) { 
      var yourUid = '<your_db_id>'; 
      // r.to is an array of friends ids that where chosen using 'apprequests' 
     } 
     else { 
      // handle error 
     } 
    } 
    FB.ui({ 
     method: 'apprequests', 
     message: 'AppMessage', 
     title: 'reqTitle' 
    }, doAfter); 
} 

您應該Check this linkThis Question以獲取更多信息。