0
我試圖讓用戶通過Facebook的應用程序,我建築物名稱等。我知道用戶將不得不對此進行授權。我正在查看Facebook文檔,但無法準確掌握我需要做的事情。獲得通過應用程序Facebook的數據 -
我加載我的應用程序的畫布頁面。我已經拿到了簽名的請求,例如等在
如果頁面已經喜歡這樣做:
如果沒有顯示出像我們的頁面選項。
你喜歡後有上,如果你回答它會進入你變成一個競爭的問題時顯示的頁面。而不是讓用戶填寫姓名和電子郵件,我想啓用oauth來獲取這些詳細信息。
有什麼想法?由於事先
exisitng代碼:
如果($ like_status == 「1」)在端 {
if (!empty ($_REQUEST['enter_competition']))
{
$name = "";//needs to be amended to what we get from Facebook
$email = "";//needs to be amended to what we get from Facebook
if ($_REQUEST['answer']==$correctanswer)
{
$result = "Correct";
}
else
{
$result= "Incorrect";
}
$insert = mysql_query ("INSERT INTO competition (name, email, answer) VALUES ('".$name."', '".$email."', '".$result."')",$db);
$displayforuser="true";
}
?>
你有沒有在Facebook的API文檔,看着都規定?一個好的起點在這裏:http://developers.facebook.com/docs/reference/api/ –