rss-bridge
rss-bridge copied to clipboard
9GAG - Trending failed with error 403
Uncaught Exception HttpException: 403 Forbidden at lib/contents.php line 132
#0 index.php:35
#1 actions/DisplayAction.php:134
#2 bridges/NineGagBridge.php:144
#3 lib/contents.php:132
Query string:action=display&bridge=NineGagBridge&context=Popular&d=trending&video=none&p=5&format=Html
Version:git.master.372eccd
Os:Linux
PHP version:7.4.3
I can reproduce this. It's cloudflare antibot.
I can reproduce this. It's cloudflare antibot.
It was working fine before.
Is there any progress on this issue?
@mbnoimi you would need to bypass the cloudflare checks somehow. I'm using the curl-impersonate project as per the dockerfile from this pull request: https://github.com/RSS-Bridge/rss-bridge/pull/2941 You can do it yourself by cloning wrobelda's fork, checking out the curlimpersonate branch and building the image. Example yaml below
version: '2'
services:
rss-bridge:
container_name: rss-bridge
# image: rssbridge/rss-bridge
build: ./rss-bridge/
volumes:
- ./volumes/whitelist.txt:/app/whitelist.txt
- ./volumes/config.ini.php:/app/config.ini.php
ports:
- 127.0.0.1:9009:80
restart: always