Skip to content

Commit df9f7eb

Browse files
[FacebookBridge] Fix permalink issue (RSS-Bridge#1358)
Facebook has changed their strategy regarding permalinks, which now include lots of unnecessary target data. Fortunately it also contains the unique story id which we can utilize as URI.
1 parent 375831f commit df9f7eb

File tree

1 file changed

+9
-2
lines changed

1 file changed

+9
-2
lines changed

bridges/FacebookBridge.php

+9-2
Original file line numberDiff line numberDiff line change
@@ -701,8 +701,15 @@ private function collectUserData(){
701701

702702
$uri = $post->find('abbr')[0]->parent()->getAttribute('href');
703703

704-
if (false !== strpos($uri, '?')) {
705-
$uri = substr($uri, 0, strpos($uri, '?'));
704+
// Extract fbid and patch link
705+
if (strpos($uri, '?') !== false) {
706+
$query = substr($uri, strpos($uri, '?') + 1);
707+
parse_str($query, $query_params);
708+
if (isset($query_params['story_fbid'])) {
709+
$uri = self::URI . $query_params['story_fbid'];
710+
} else {
711+
$uri = substr($uri, 0, strpos($uri, '?'));
712+
}
706713
}
707714

708715
//Build and add final item

0 commit comments

Comments
 (0)