我有一个使用团购网站插件(http://groupbuyingsite.com)的网站。它使用Facebook应用程序登录和注册。
当我向购物车添加新商品时,用户会被重定向到cart.php
并调用函数add_item($product_id, ...)
。我想知道当我进入这个页面时,我会自动在Facebook时间线上分享一个帖子。
感谢。
答案 0 :(得分:2)
假设你有访问令牌,我建议你试试这个:
$result = $facebook->api(
'/me/feed/',
'post',
array('access_token' => $access_token, 'message' => 'Your Post here')
);
答案 1 :(得分:0)
$result = $facebook->api(
'/me/feed/',
'post',
array('access_token' => $access_token, 'message' => 'Your Post here')