문제 이해
Google Analytics API를 사용할 때 오류가 발생할 수 있습니다. 여러 Google 계정의 데이터에 액세스하려고 할 때 이 문제는 액세스 토큰이 1시간 후에 만료되기 때문에 발생합니다. $client->refreshToken()을 사용하여 토큰을 새로 고치면 문제가 해결되지만 경우에 따라 "invalid_grant" 오류가 반환될 수 있습니다.
해결책
토큰을 올바르게 새로 고치려면 다음을 이해해야 합니다. 다음:
코드 구현
첨부된 코드는 토큰 관리 솔루션을 보여줍니다. 만료:
// Retrieve the original token. $originalToken = json_decode($token); // Calculate token expiration time. $now = time(); $expirationTime = $originalToken->created + 3600; // Check if token is expired. if ($now > $expirationTime) { // If expired, use the refresh token from the original token to obtain a new temporary token. $client->refreshToken($originalToken->refresh_token); $newToken = $client->getAccessToken(); $tokenQuery = "UPDATE token SET token='$newToken' WHERE type='refresh'"; mysqli_query($cxn, $tokenQuery); $token = $newToken; } else { // If the original token hasn't expired, set the token as the original token. $client->setAccessToken($token); }
이 코드는 원본 토큰을 검색하고 만료 시간을 계산하며 만료되었는지 확인합니다. 그렇다면 새로 고침 토큰을 사용하여 토큰을 새로 고치고 데이터베이스를 업데이트합니다. 원본 토큰이 만료되지 않은 경우 클라이언트의 액세스 토큰을 원본 토큰으로 설정합니다.
위 내용은 'invalid_grant' 오류를 방지하기 위해 Google API 클라이언트 액세스 토큰을 효율적으로 새로 고치는 방법은 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!