From fcc9f9fd61cb25825c5b34f785cb0940663b9f9f Mon Sep 17 00:00:00 2001 From: logmanoriginal Date: Wed, 26 Sep 2018 18:24:43 +0200 Subject: [PATCH] [FacebookBridge] Use alternative URI to load more posts The URI "https://facebook.com/username?_fb_noscript=1" returns two posts per user. Some profiles, however, are very active, causing the bridge to miss items if more than two posts are send within the cache duration (5 minutes). The alternative suggested in #669 is to use a different URI: "https://facebook.com/pg/username/posts?_fb_noscript=1" While the contents of this URI essentially look the same when viewed in a browser, it actually returns more than 10 posts depending on the profile. References #669 --- bridges/FacebookBridge.php | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/bridges/FacebookBridge.php b/bridges/FacebookBridge.php index 8c1bb6d7..3718b2e2 100644 --- a/bridges/FacebookBridge.php +++ b/bridges/FacebookBridge.php @@ -86,7 +86,7 @@ class FacebookBridge extends BridgeAbstract { $user = $this->sanitizeUser($this->getInput('u')); if(!strpos($user, '/')) { - $uri .= urlencode($user); + $uri .= '/pg/' . urlencode($user) . '/posts'; } else { $uri .= 'pages/' . $user; } @@ -497,7 +497,6 @@ EOD; ->find('#pagelet_timeline_main_column')[0] ->children(0) ->children(0) - ->children(0) ->next_sibling() ->children(0);