我正在学习 Facebook 应用程序开发,我希望我的应用程序在用户的墙上发布一条简单的消息。
我如何使用图形 API 来做到这一点?
我正在使用 servlet 开发应用程序。
我正在学习 Facebook 应用程序开发,我希望我的应用程序在用户的墙上发布一条简单的消息。
我如何使用图形 API 来做到这一点?
我正在使用 servlet 开发应用程序。
您可以使用 socialauth 库在 FB 墙上发布消息。
http://code.google.com/p/socialauth/
如何在朋友的墙上发布消息,请访问以下链接:-
http://code.google.com/p/socialauth/issues/detail?id=233。
首先,您需要使用“https://graph.facebook.com/oauth/”获取用户的 access_token(登录后)。
https://developers.facebook.com/docs/authentication/
请注意,他的 access_token 将通过 $REQUEST['code'] 检索到您自己的 php 或其他 "&redirect_uri=WWW.YOUR_WEB.PHP" 中,您必须以这种方式对其进行解密:
$code = $_REQUEST['code'];
$url = "https://graph.facebook.com/oauth/access_token?";
$url .= "client_id=" . $APP_ID;
$url .= "&client_secret=" . $APP_SECRET;
$url .= "&code=" . $code;
$url .= "&redirect_uri=" . $MY_URL;
$c = curl_init();
curl_setopt($c, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($c, CURLOPT_URL, $url);
$response = curl_exec($c);
curl_close($c);
$response = explode("&", $response);
foreach($response as $key => $value)
{
$pair = explode("=", $value);
$response[$pair[0]] = $pair[1];
unset($response[$key]);
}
$access_token = $response['access_token'];
$expires = $response['expires'];
稍后要在墙上发帖,您需要以这种方式调用 url:
_url = "https://graph.facebook.com/" + user_id + "/feed?message=MSG_STRING"
_url += "&access_token=" + access_token;
_url += "&name=NAME_STRING";
_url += "&link=LINK_URL";
_url += "&description=DESCRIPTION_STRING";
_url += "&method=post";