From d7d99d5606a3d3a350977ef010a1e172d8326482 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mike=20F=C3=A4hrmann?= Date: Thu, 5 Jun 2025 14:25:07 +0200 Subject: [PATCH] [behance] fix '403 Forbidden' errors --- docs/configuration.rst | 2 +- gallery_dl/extractor/behance.py | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/configuration.rst b/docs/configuration.rst index b76bd501..e555cc92 100644 --- a/docs/configuration.rst +++ b/docs/configuration.rst @@ -778,7 +778,7 @@ extractor.*.tls12 Type ``bool`` Default - * ``false``: ``artstation`` + * ``false``: ``artstation``, ``behance`` * ``true``: otherwise Description Allow selecting TLS 1.2 cipher suites. diff --git a/gallery_dl/extractor/behance.py b/gallery_dl/extractor/behance.py index 14598b7a..58b52443 100644 --- a/gallery_dl/extractor/behance.py +++ b/gallery_dl/extractor/behance.py @@ -17,6 +17,7 @@ class BehanceExtractor(Extractor): category = "behance" root = "https://www.behance.net" request_interval = (2.0, 4.0) + tls12 = False def _init(self): self._bcp = self.cookies.get("bcp", domain="www.behance.net")