From aa5c86dba2274a0af572f98ed6c5b13234543def Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=99=B6=E6=AC=A3?= Date: Mon, 27 Sep 2021 17:59:08 +0800 Subject: [PATCH] =?UTF-8?q?=E8=A7=A3=E5=86=B3=EF=BC=9A=E5=A6=82=E6=9E=9C?= =?UTF-8?q?=E6=9C=AC=E5=9C=B0=E6=8B=89=E9=BB=91=EF=BC=8C=E5=9C=A8=E5=AE=98?= =?UTF-8?q?=E6=96=B9=E5=88=A0=E9=99=A4=E5=90=8E=EF=BC=8C=E8=8E=B7=E5=8F=96?= =?UTF-8?q?=E7=B2=89=E4=B8=9D=EF=BC=8C=E6=9C=AC=E5=9C=B0=E9=BB=91=E5=90=8D?= =?UTF-8?q?=E5=8D=95=E4=BE=9D=E6=97=A7=E5=9C=A8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/wechat/command/Fans.php | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/app/wechat/command/Fans.php b/app/wechat/command/Fans.php index 2efd62e13..6df02a446 100644 --- a/app/wechat/command/Fans.php +++ b/app/wechat/command/Fans.php @@ -105,6 +105,11 @@ class Fans extends Command { $wechat = WechatService::WeChatUser(); $this->setQueueProgress("开始更新黑名单的微信用户"); + + //解决:如果本地拉黑,在官方删除后,获取粉丝,本地黑名单依旧在 + $this->setQueueProgress("开始删除本地黑名单用户"); + WechatFans::mk()->update(['is_black' => 1])->delete(); + while (!is_null($next) && is_array($result = $wechat->getBlackList($next)) && !empty($result['data']['openid'])) { foreach (array_chunk($result['data']['openid'], 100) as $chunk) { $done += count($chunk); @@ -150,4 +155,4 @@ class Fans extends Command $this->output->newLine(); return ", 获取到 {$done} 个标签"; } -} \ No newline at end of file +}