rss-bridge icon indicating copy to clipboard operation
rss-bridge copied to clipboard

9GAG - Trending failed with error 403

Open mbnoimi opened this issue 3 years ago • 2 comments

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

mbnoimi avatar Aug 19 '22 22:08 mbnoimi

I can reproduce this. It's cloudflare antibot.

dvikan avatar Aug 19 '22 22:08 dvikan

I can reproduce this. It's cloudflare antibot.

It was working fine before.

mbnoimi avatar Aug 19 '22 23:08 mbnoimi

Is there any progress on this issue?

mbnoimi avatar Oct 23 '22 13:10 mbnoimi

@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

dugite-code avatar Oct 24 '22 06:10 dugite-code