mirror of
https://github.com/RSS-Bridge/rss-bridge.git
synced 2025-04-05 17:19:37 +00:00
fix: add workaround for NYTBridge antibot (#3022)
This commit is contained in:
parent
27b3d7c34e
commit
6ac347d5ac
@ -19,8 +19,15 @@ class NYTBridge extends FeedExpander
|
|||||||
$article = '';
|
$article = '';
|
||||||
|
|
||||||
// $articlePage gets the entire page's contents
|
// $articlePage gets the entire page's contents
|
||||||
$articlePage = getSimpleHTMLDOM($newsItem->link);
|
try {
|
||||||
|
$articlePage = getSimpleHTMLDOM($newsItem->link);
|
||||||
|
} catch (HttpException $e) {
|
||||||
|
// 403 Forbidden, This means we got anti-bot response
|
||||||
|
if ($e->getCode() === 403) {
|
||||||
|
return $item;
|
||||||
|
}
|
||||||
|
throw $e;
|
||||||
|
}
|
||||||
// handle subtitle
|
// handle subtitle
|
||||||
$subtitle = $articlePage->find('p.css-w6ymp8', 0);
|
$subtitle = $articlePage->find('p.css-w6ymp8', 0);
|
||||||
if ($subtitle != null) {
|
if ($subtitle != null) {
|
||||||
|
Loading…
Reference in New Issue
Block a user