0

我想通过 XML 通过 google 电子表格 api 阅读 google 电子表格。

我尝试不同的方式,例如

<?php
$data = file_get_contents("https://spreadsheets.google.com/feeds/worksheets/WORKSHEET_KEY/private/full");
?>

或者

<?php
simplexml_load_file(URL)
?>

但我只给出一个空字符串。该文件是公开的,如果我直接在该网站上冲浪,它就可以工作。

你能帮助我吗?

4

2 回答 2

2

看看下面的文章:http ://arlando.net/blog/connecting-to-google-spreadsheet-api-with-php/

我还建议从 google API 的https://developers.google.com/google-apps/spreadsheets/阅读此文档

于 2013-05-07T12:05:45.517 回答
0

这很可能与以下已回答的问题有关:

使用 file_get_contents() 加载远程 xml 页面

您的服务器可能不允许使用 file_get_contents 打开远程 url。

此页面上接受的答案显示了 curl 的解决方法

于 2013-05-07T12:06:57.743 回答