mirror of
https://github.com/RSS-Bridge/rss-bridge.git
synced 2024-11-25 19:06:23 +03:00
fix: more verbose error in fb (#3089)
This commit is contained in:
parent
44e5bf5338
commit
5d18852108
1 changed files with 13 additions and 7 deletions
|
@ -553,7 +553,8 @@ EOD;
|
|||
$header = [];
|
||||
}
|
||||
|
||||
$html = getSimpleHTMLDOM($this->getURI(), $header);
|
||||
$url = $this->getURI();
|
||||
$html = getSimpleHTMLDOM($url, $header);
|
||||
}
|
||||
|
||||
// Handle captcha form?
|
||||
|
@ -571,12 +572,17 @@ EOD;
|
|||
returnServerError('You must be logged in to view this page. This is not supported by RSS-Bridge.');
|
||||
}
|
||||
|
||||
$element = $html
|
||||
->find('#pagelet_timeline_main_column')[0]
|
||||
->children(0)
|
||||
->children(0)
|
||||
->next_sibling()
|
||||
->children(0);
|
||||
file_put_contents('/tmp/a.html', "$html");
|
||||
$mainColumn = $html->find('#pagelet_timeline_main_column');
|
||||
if (!$mainColumn) {
|
||||
throw new \Exception(sprintf('Unable to find anything useful in %s', $url));
|
||||
}
|
||||
|
||||
$element = $mainColumn[0]
|
||||
->children(0)
|
||||
->children(0)
|
||||
->next_sibling()
|
||||
->children(0);
|
||||
|
||||
if (isset($element)) {
|
||||
$author = str_replace(' - Posts | Facebook', '', $html->find('title#pageTitle', 0)->innertext);
|
||||
|
|
Loading…
Reference in a new issue