mirror of
https://gitee.com/zoujingli/ThinkAdmin.git
synced 2025-04-06 03:58:04 +08:00
解决:如果本地拉黑,在官方删除后,获取粉丝,本地黑名单依旧在
This commit is contained in:
parent
5c89ea4946
commit
aa5c86dba2
@ -105,6 +105,11 @@ class Fans extends Command
|
|||||||
{
|
{
|
||||||
$wechat = WechatService::WeChatUser();
|
$wechat = WechatService::WeChatUser();
|
||||||
$this->setQueueProgress("开始更新黑名单的微信用户");
|
$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'])) {
|
while (!is_null($next) && is_array($result = $wechat->getBlackList($next)) && !empty($result['data']['openid'])) {
|
||||||
foreach (array_chunk($result['data']['openid'], 100) as $chunk) {
|
foreach (array_chunk($result['data']['openid'], 100) as $chunk) {
|
||||||
$done += count($chunk);
|
$done += count($chunk);
|
||||||
@ -150,4 +155,4 @@ class Fans extends Command
|
|||||||
$this->output->newLine();
|
$this->output->newLine();
|
||||||
return ", 获取到 {$done} 个标签";
|
return ", 获取到 {$done} 个标签";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user