如何解决 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
}
}
解决方案
- 登录vps,输入以下命令:
rm -rf /etc/localtime #删除默认时区设置
ln -s /usr/share/zoneinfo/Asia/Shanghai /etc/localtime #改为上海作为默认
- 设置同步时间
ntpdate us.pool.ntp.org
到此,问题解决。