我网站上的操作流程是:
- 用户在任何网站上都能找到他们想要的东西
- 他们单击一个浏览器按钮,该按钮打开一个包含我网站内容的 iframe,并允许用户将他们正在查看的项目添加到列表中
- (此时我的系统会向数据库添加详细信息)
- 然后用户点击关闭 iframe 并继续做他们原来的事情
当用户选择添加内容时,我还想将操作发布到 Facebook 时间线
我使用下面的代码,它应该可以正常工作,但是,一旦它完成了任务,它就会重定向到一个预定的 url - 名为 $my_url
问题是我希望这个动作发布能够无缝地发生,因为我的用户打开了一个 iframe 弹出窗口,此时显示“ *已成功添加到您的列表中”
那么我可以停止它重定向并使其只是后台操作吗?我无法重定向到用户已经在查看的内容,这是一个想法,因为您必须拥有 fb 应用程序中的 url
这是我正在使用的代码
$app_id = "_APP_ID_";
$app_secret = "_SECRET";
$my_url = "http://*******.com/pages/add.html";
$og_url = "http://*******.com/pages/view?id=$new_id";
$code = $_REQUEST["code"];
if(empty($code)) {
$dialog_url = "http://www.facebook.com/dialog/oauth?client_id="
. $app_id . "&redirect_uri=" . urlencode($my_url)
. &scope=email,user_birthday,friends_birthday,user_likes,friends_likes,publish_stream";
echo("<script>top.location.href='" . $dialog_url . "'</script>");
}
$token_url="https://graph.facebook.com/oauth/access_token?client_id="
. $app_id . "&redirect_uri=" . urlencode($my_url)
. "&client_secret=" . $app_secret
. "&code=" . $code;
$access_token = file_get_contents($token_url);
// remove the @expires
$params = null;
parse_str($access_token, $params);
$access_token_updated = $params['access_token'];
$post_data = "wish=" . $og_url . "&access_token=" . $access_token_updated;
// setup the curl
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, 'https://graph.facebook.com/me/*******:add');
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS, $post_data);
// execute the curl
$result = curl_exec ($ch);
if(curl_error($ch))
{
//echo 'error:' . curl_error($ch) . "<br/>";
}
curl_close ($ch);
还有其他方法吗?