我试图通过 JWT 通过 OAuth 连接到 Google API,但我不断收到此错误:
{ "error": "invalid_grant", "error_description": "无效的 JWT:令牌必须是短期令牌,并且在合理的时间范围内" }
在我的 JWT calim 中,我将 iat 设置为当前时间减去 1970-01-01(以秒为单位),并将 exp 设置为 iat + 3600,所以我不知道为什么我仍然收到此错误。如果有人知道答案,请告诉我!
不确定您是否曾经让它工作,但以下简单步骤使用 PHP 函数 openssl_sign() 对我有用:
//helper function
function base64url_encode($data) {
return rtrim(strtr(base64_encode($data), '+/', '-_'), '=');
}
//Google's Documentation of Creating a JWT: https://developers.google.com/identity/protocols/OAuth2ServiceAccount#authorizingrequests
//{Base64url encoded JSON header}
$jwtHeader = base64url_encode(json_encode(array(
"alg" => "RS256",
"typ" => "JWT"
)));
//{Base64url encoded JSON claim set}
$now = time();
$jwtClaim = base64url_encode(json_encode(array(
"iss" => "761326798069-r5mljlln1rd4lrbhg75efgigp36m78j5@developer.gserviceaccount.com",
"scope" => "https://www.googleapis.com/auth/prediction",
"aud" => "https://www.googleapis.com/oauth2/v4/token",
"exp" => $now + 3600,
"iat" => $now
)));
//The base string for the signature: {Base64url encoded JSON header}.{Base64url encoded JSON claim set}
openssl_sign(
$jwtHeader.".".$jwtClaim,
$jwtSig,
$your_private_key_from_google_api_console,
"sha256WithRSAEncryption"
);
$jwtSign = base64url_encode($jwtSig);
//{Base64url encoded JSON header}.{Base64url encoded JSON claim set}.{Base64url encoded signature}
$jwtAssertion = $jwtHeader.".".$jwtClaim.".".$jwtSig;
我遇到了同样的问题,我通过同步我的虚拟机时间来解决它,以便使用公共 ntpserver:
ntpdate ntp.ubuntu.com
如果看到此错误,则必须为令牌设置正确的过期时间。例:
var currentTime = new Date().getTime() / 1000; //must be in seconds
var exp = currentTime + 60;
var auth_claimset = {
iss : "...",
scope : "...",
aud : "...",
exp : exp,
iat : currentTime
};
如果您按照此处的 HTTP/Rest 下的步骤操作:https://developers.google.com/identity/protocols/OAuth2ServiceAccount#formingheader,您将看到您的服务帐户支持 RSA SHA-256,并且您似乎使用 HMAC。
如果您在 Windows 的 Docker 上具有 WSL2 后端的本地开发计算机上进行测试,WSL 也会发生这种情况,这将导致此问题。
您需要安装 ntpdate
sudo apt install ntpdate
然后你需要设置时间。
sudo ntpdate time.windows.com
关于它的好文章在这里 - https://tomssl.com/fixing-clock-drift-in-wsl2-using-windows-terminal/