Heim >Backend-Entwicklung >PHP-Tutorial >javascript - 微信js接口,access_token和jsapi_ticket没有缓存导致的服务不可用如何解决?

javascript - 微信js接口,access_token和jsapi_ticket没有缓存导致的服务不可用如何解决?

WBOY
WBOYOriginal
2016-06-06 20:34:251190Durchsuche

现在一直在跳invalid signature签名错误,不知道如何解决,是等一段时间就行了还是就不能用了?

回复内容:

现在一直在跳invalid signature签名错误,不知道如何解决,是等一段时间就行了还是就不能用了?

那就缓存一下呗。有条件上memcache,redis,简单点直接用文件缓存也行(官方的demo就是)

微信上文档好像说的是 access_token 7200秒过期,
所以,我们只需要简单的写一下文件来达到缓存的目的就可以了,

例如下面的代码就是先去读缓存,如果没有的话,再去微信请求一遍

<code>$token = Lib_Cache::read('access_token', 3600);
if (!$token || strlen($token) </code>

这样独立以后,缓存部分可以替换为任意方案,我在这儿就简单的以文件为例子了,主要是我也用的文件,不麻烦:

<code>class Lib_Cache {
    public static function read($file, $expires) {
        if(file_exists($file)) {
            $time = filemtime($file);
            if(time() - $time > $expires) {
                return null;
            }else {
                return file_get_contents($file);
            }
        }
        return null;
    }

    public static function write($file, $value) {
        @file_put_contents($file, $value);
    }
}
</code>

access_token的请求,一天有2000次的限制,但7200秒过期,所以就3600秒一个小时一次,怎么用也不会过期的

access_token官方限制了每天获取2000次,但是签名错误的话,你是不是要检查下你的签名到底有没有问题啊.

保存在数据库中,写定时任务,每110分钟请求一次。。。用accesstoken的时候先判断下是否过期

Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn