答案 0 :(得分:1)
我指的是控制台,您可以在其中创建并获取项目的密钥:
https://cloud.google.com/console
您对localhost的URL是“Redirect URIs”
框在您的代码中,您有:
$redirectURI = 'http://localhost';
$client = new Google_Client();
// Get your credentials from the console
$client->setClientId($clientID);
$client->setClientSecret($clientSecret);
$client->setRedirectUri($redirectURI);
$client->setScopes(array('https://www.googleapis.com/auth/drive.file'));
这些必须匹配,否则每次都会出现此错误。