0
以下是我目前正在:如何使用帶有訪問令牌和捲曲的php api發佈到facebook用戶牆?
if (function_exists('curl_init')) {
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, 'https://graph.facebook.com/me/feed');
curl_setopt($ch, CURLOPT_POST, 2);
curl_setopt($ch, CURLOPT_POSTFIELDS, "access_token=$facebook_access_token&message=testing api.");
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$result = curl_exec($ch);
curl_close($ch);
}
其中$ facebook_access_token是包含訪問令牌的變量。
我做錯了什麼?我必須使用php api,而且我不明確知道用戶的臉書頁面url,只有訪問令牌。
謝謝。
完成它。我使用了facebook api對象 - 比使用curl更容易。 – 2012-03-27 11:05:40