我有一个不允许离开我们网络的网站。我们使用一些域名从我们公司的网络(例如desire.it.loc
)访问它。现在我需要从我的网站上传一些文件到谷歌驱动器。到目前为止,我首先应该做的是对Google帐户进行身份验证。我在google developers console
创建了项目,得到了client_id,秘密等等。现在我得到了
Error: invalid_request
device_id and device_name are required for private IP: http://x.x.x.x:x
我的PHP代码:
session_start();
$client = new Google_Client();
$client->setApplicationName("limits");
$client->setDeveloperKey("<key goes here>");
$client->setClientId('<id goes here>');
$client->setClientSecret('<secret goes here>');
$client->setRedirectUri('http://x.x.x.x:x');
$client->setScopes(array('http://x.x.x.x:x'));
if ($_GET['logout'] == "1") {
unset($_SESSION['token']);
}
if (isset($_GET['code'])) {
$client->authenticate($_GET['code']);
$_SESSION['token'] = $client->getAccessToken();
$redirect = 'http://' . $_SERVER['HTTP_HOST'] . $_SERVER['PHP_SELF'];
header('Location: ' . filter_var($redirect, FILTER_SANITIZE_URL));
}
if (!$client->getAccessToken() && !isset($_SESSION['token'])) {
$authUrl = $client->createAuthUrl(); // error goes here
print "<a class='login' href='$authUrl'>Connect Me!</a>";
}
if (isset($_SESSION['token'])) {
print "<a class='logout' href='".$_SERVER['PHP_SELF']."?logout=1'>LogOut</a><br>";
$client->setAccessToken($_SESSION['token']);
$service = new Google_Service_Analytics($client);
$accounts = $service->management_accountSummaries->listManagementAccountSummaries();
foreach ($accounts->getItems() as $item) {
echo "Account: ",$item['name'], " " , $item['id'], "<br /> \n";
foreach($item->getWebProperties() as $wp) {
echo ' WebProperty: ' ,$wp['name'], " " , $wp['id'], "<br /> \n";
$views = $wp->getProfiles();
if (!is_null($views)) {
foreach($wp->getProfiles() as $view) {
// echo ' View: ' ,$view['name'], " " , $view['id'], "<br /> \n";
}
}
}
} // closes account summaries
}
print "<br><br><br>";
print "Access from google: " . $_SESSION['token'];
?>
我不是我们网络服务器的管理员,所以我想我很难在那里更改一些设置。我可以以某种方式修复它而无需注册“假域名”或类似的东西。
答案 0 :(得分:1)
$ client-&gt; setRedirectUri('http://x.x.x.x:x'); 是不允许的。您需要一个域名,例如dev.example.com。您可以配置/ etc / hosts(或等效的Windows)以将dev.example.com解析为ip地址。需要在Google API控制台中注册相同的域名。