前端集合 - 关注前端技术和互联网免费资源

关注前端技术和互联网免费资源

分类儿

页面儿

搜索儿

前端集合 RSS订阅
Home » 经验记录 » 如何解决 Stale request - reported time which is more than 1 hour ago的错误?

如何解决 Stale request - reported time which is more than 1 hour ago的错误?

发布者:前端集合 // 发布时间:2015-10-15 22:38:00 // 分类:经验记录 // 访问: 7,552 次 // 热度:

如果解决 Stale request - reported time which is more than 1 hour ago的错误?

最近,用thinkjs整了个小网站。在使用一个国外云服务上传图片时,报如下错误:

{
    "error": {
        "message": "Stale request - reported time is 2015-10-04 which is more than 1 hour ago",
        "http_code": 400
    }
}

解决方案

rm -rf /etc/localtime #删除默认时区设置
ln -s /usr/share/zoneinfo/Asia/Shanghai /etc/localtime #改为上海作为默认
ntpdate us.pool.ntp.org

到此,问题解决。

Tags: stale request, reported time more than 1 hour ago, cloudinary stale request, cloudinary

如何获取NVM中node.js或指定node.js版本安装路径?>>  << Gulp提示Promise is not defined错误的解决办法
Top