Easywechat第三方平台出现Credential "component_verify_ticket" does not exist in cache
Song •
2033 次浏览 •
0个评论 •
2021年12月22日
EasyWeChat\Kernel\Exceptions\RuntimeException
Credential "component_verify_ticket" does not exist in cache
也设置过缓存了
$app = Factory::openPlatform(config(wechat.open_platform.default));
$predis = app(redis)->connection()->client();
$cache = new RedisCache($predis);
$app->rebind(cache, $cache);
$this->server = $app;
解决办法:
第三方开发平台,微信会定时推送ticket;没有合理保存或者其他环境获取不到component_verify_ticket
更多相关好文
-
laravel中distinct()的使用方法与去重 2017-09-11
-
Laravel将view缓存为静态html,laravel页面静态缓存 2021-10-09
-
[ laravel爬虫实战--基础篇 ] guzzle描述与安装 2017-11-01
-
[ 配置教程 ] 在ubuntu16.04中部署LNMP环境(php7+maridb且开启maridb远程以及nginx多域名访问 )并配置laravel环境 2017-07-18
-
mysql如何给运营人员添加只有查询权限的账号 2024-12-02
热门文章
-
mysql如何给运营人员添加只有查询权限的账号 2024-12-02
-
Mac 安装mysql并且配置密码 2024-11-20
-
阿里云不同账号(跨账号)ECS服务器同地域如何实现免费内网互通? 2024-11-12
-
electron安装使用better-sqlite3并解决NODE_MODULE_VERSION xxx. This version of Node.js requires 2024-11-06
-
Zerotier+Moon+Nginx实现内网穿透搭建网站 2024-08-23
Laravel模型更新全表如何实现?