註冊的成就,我花了很多時間試圖註冊使用grahp API與Facebook的成就,但 我總是得到這個:Facebook的API:無法與Facebook
{"error":{"type":"OAuthException","message":"(#2) Object at achievement URL is not of type game.achievement"}}
的代碼是:
$achievementUrl = 'http://www.dappergames.com/test.html';
$url = 'https://graph.facebook.com/' . $appID . '/achievements?achievement=' .
$achievementUrl . '&display_order=' . $order . '&access_token=' . $accessToken . '';
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_HTTPAUTH, CURLAUTH_BASIC);
curl_setopt($ch, CURLOPT_SSL_VERIFYHOST,0);
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER,0);
curl_setopt($ch, CURLOPT_POST, true);
curl_setopt($ch, CURLOPT_POSTFIELDS, $fields);
$data = curl_exec($ch);
print_r($data);
任何幫助將不勝感激。
感謝
以管理員身份前往您的Facebook應用程序設置,並檢查您是否將應用程序歸入遊戲類別下......我認爲這樣可以解決您的問題。 – Vijay
嗨Vijay,我的應用被歸類爲「遊戲」應用。所以這不應該是一個原因。 – Dantenello