fbpost: Now groups and pages can be mirrored as well

This commit is contained in:
Michael Vogel 2013-01-01 23:38:15 +01:00
parent f6d9ced311
commit 88638d2338

View file

@ -1008,10 +1008,13 @@ function fbpost_cron($a,$b) {
function fbpost_fetchwall($a, $uid) {
$access_token = get_pconfig($uid,'facebook','access_token');
$post_to_page = get_pconfig($uid,'facebook','post_to_page');
$lastcreated = get_pconfig($uid,'facebook','last_created');
$lastcreated = "";
$url = 'https://graph.facebook.com/me/feed?access_token='.$access_token;
if ((int)$post_to_page == 0)
$post_to_page = "me";
$url = "https://graph.facebook.com/".$post_to_page."/feed?access_token=".$access_token;
if ($lastcreated != "")
$url .= "&since=".urlencode($lastcreated);