我正在学习Facebook应用程序开发,我希望我的应用程序在用户的墙上发布一条简单的消息。
如何使用图形API进行操作?
我正在使用servlet开发app。
答案 0 :(得分:0)
首先,您需要使用“https://graph.facebook.com/oauth/”获取用户的access_token(在登录后)。
https://developers.facebook.com/docs/authentication/
请注意,他的access_token将通过$ REQUEST ['code']检索到您自己的php或whatelse“& 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 = "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";
答案 1 :(得分:0)
您可以使用socialauth库在FB墙上发布消息
http://code.google.com/p/socialauth/
如何在朋友的墙上发布消息,请访问以下链接: -
http://code.google.com/p/socialauth/issues/detail?id=233。