【发布时间】:2015-06-15 18:52:52
【问题描述】:
我有一个网站不允许进入我们的网络。我们使用一些域名从我们公司的网络访问它(比如desire.it.loc)。现在我需要从我的网站上传一些文件到谷歌驱动器。到目前为止,我首先应该做的是对谷歌帐户进行身份验证。我在google developers console 创建了项目,得到了client_id、secret 等。现在我得到了
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'];
?>
我不是我们网络服务器的管理员,所以我想我很难在那里更改一些设置。我可以在不注册“假域名”或类似的东西的情况下以某种方式修复它吗?
【问题讨论】:
-
您在做什么会引发该错误消息?
-
@pinoyyid 将我的代码添加到问题中
-
哪一行导致错误?
-
@pinoyyid
$authUrl = $client->createAuthUrl();
标签: php oauth-2.0 google-drive-api