From 1858a185321cf1c3b99a3704ce038029368e7d0a Mon Sep 17 00:00:00 2001 From: wangchunxiang <526328077@qq.com> Date: Thu, 16 Oct 2025 15:56:33 +0800 Subject: [PATCH] =?UTF-8?q?fix(service):=20=E6=9B=B4=E6=96=B0=E6=8A=96?= =?UTF-8?q?=E9=9F=B3=E6=8E=A5=E5=8F=A3=E5=9C=B0=E5=9D=80=E9=85=8D=E7=BD=AE?= =?UTF-8?q?=20=E5=B0=86=E6=8A=96=E9=9F=B3=E6=8E=A5=E5=8F=A3=E5=9C=B0?= =?UTF-8?q?=E5=9D=80=E4=BB=8E=20GlobalConfig.mtDianPingInterfaceAddress?= =?UTF-8?q?=E6=9B=B4=E6=96=B0=E4=B8=BA=20GlobalConfig.dyPingJiaInterfaceAd?= =?UTF-8?q?dress=EF=BC=8C=E7=A1=AE=E4=BF=9D=E6=8E=A5=E5=8F=A3=E8=AF=B7?= =?UTF-8?q?=E6=B1=82=E8=83=BD=E5=A4=9F=E6=AD=A3=E7=A1=AE=E5=8C=B9=E9=85=8D?= =?UTF-8?q?=E6=8A=96=E9=9F=B3=E8=AF=84=E4=BB=B7=E7=9B=B8=E5=85=B3=E7=BD=91?= =?UTF-8?q?=E7=BB=9C=E8=AF=B7=E6=B1=82=E3=80=82?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/main/java/com/fantaibao/service/FtbCrawlNetDy.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/com/fantaibao/service/FtbCrawlNetDy.java b/src/main/java/com/fantaibao/service/FtbCrawlNetDy.java index 7f1c481..6ecca94 100644 --- a/src/main/java/com/fantaibao/service/FtbCrawlNetDy.java +++ b/src/main/java/com/fantaibao/service/FtbCrawlNetDy.java @@ -28,7 +28,7 @@ public class FtbCrawlNetDy extends AbstractFtbCrawlNetBase implements FtbCrawlNe AtomicBoolean dyCookie = new AtomicBoolean(false); // 监听网络请求 context.onRequest(request -> { - if (request.url().contains(GlobalConfig.mtDianPingInterfaceAddress)) { + if (request.url().contains(GlobalConfig.dyPingJiaInterfaceAddress)) { // 打印请求URL log.info("请求URL: {}", request.url()); super.processCookie(request, 1, "抖音",dyCookie);