如何在facebook时间轴上自动分享帖子


How to auto share a post on facebook timeline?

我有一个网站,使用团购网站插件(http://groupbuyingsite.com)。它使用facebook应用程序登录和注册。

当我向购物车中添加新商品时,用户被重定向到cart.php,并调用函数add_item($product_id, ...)。我想知道是否有一种方法,当我进入这个页面时,我自动在facebook时间轴上分享帖子。

谢谢。

假设您有访问令牌,我建议您尝试以下操作:

$result = $facebook->api(
    '/me/feed/',
    'post',
    array('access_token' => $access_token, 'message' => 'Your Post here')
);
$result = $facebook->api(
    '/me/feed/',
    'post',
    array('access_token' => $access_token, 'message' => 'Your Post here')