试图让这个工作变得超级沮丧。基本上这是一个站点(x10hosting.com),我不能包含zend gdata框架,所以我试图使用带有php cURL的谷歌数据API来访问它。我能做的最多的是使用以下脚本返回提供的用户名工作表列表:
<?php
// Construct an HTTP POST request
$clientlogin_url = "https://www.google.com/accounts/ClientLogin";
$clientlogin_post = array(
"accountType" => "HOSTED_OR_GOOGLE",
"Email" => "", //username
"Passwd" => '', //password
"service" => "writely",
"source" => "your application name"
);
// Initialize the curl object
$curl = curl_init($clientlogin_url);
// Set some options (some for SHTTP)
curl_setopt($curl, CURLOPT_POST, true);
curl_setopt($curl, CURLOPT_POSTFIELDS, $clientlogin_post);
curl_setopt($curl, CURLOPT_HTTPAUTH, CURLAUTH_ANY);
curl_setopt($curl, CURLOPT_SSL_VERIFYPEER, false);
curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1);
// Execute
$response = curl_exec($curl);
// Get the Auth string and save it
preg_match("/Auth=([a-z0-9_\-]+)/i", $response, $matches);
$auth = $matches[1];
echo "The auth string is: ".$auth;
// Include the Auth string in the headers
// Together with the API version being used
$headers = array(
"Authorization: GoogleLogin auth=".$auth,
"GData-Version: 3.0",
);
// Make the request
$key = ;
curl_setopt($curl, CURLOPT_URL, "https://spreadsheets1.google.com/ccc?key=$key");
curl_setopt($curl, CURLOPT_HTTPHEADER, $headers);
curl_setopt($curl, CURLOPT_POST, false);
$response = curl_exec($curl);
curl_close($curl);
var_dump($response);
// Parse the response
$response = simplexml_load_string($response);
// Output data
foreach($response->entry as $file)
{
echo "File: " . $file->title . "<br />";
echo "Type: " . $file->content["type"] . "<br />";
echo "Author: " . $file->author->name . "<br /><br />";
}
?>
但我想不出一种方法来使用它来访问一个特定的工作表。请帮忙,这让我发疯了。
编辑:遵循 DASPRiD 的建议给了我这个错误->
注意: Zend_Loader::Zend_Loader::registerAutoload 自 1.8.0 起已弃用,将在 2.0.0 中删除;在第 266 行的 /home/c3webdev/public_html/library/Zend/Loader.php 中使用 Zend_Loader_Autoloader
警告:require_once(Zend/Loader/Autoloader.php) [function.require-once]:无法打开流:第 267 行的 /home/c3webdev/public_html/library/Zend/Loader.php 中没有这样的文件或目录
致命错误:require_once() [function.require]:无法打开所需的“Zend/Loader/Autoloader.php”(include_path='/home/c3webdev/public_html/library:.:/usr/lib/php:/usr/local /lib/php') 在第 267 行的 /home/c3webdev/public_html/library/Zend/Loader.php