html 获取Google电子表格数据

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了html 获取Google电子表格数据相关的知识,希望对你有一定的参考价值。

<?php
    $spreadsheetID = '1pO7BBOkhWL2TcBPYkDTlWZ0Gbw4mAUSadK_8NOn0Ij8';
    $urlPath       = 'http://spreadsheets.google.com/feeds/list/' . $spreadsheetID . '/od6/public/values?alt=json';
    $file          = file_get_contents($urlPath);
    $json          = json_decode($file);
    $rows          = $json->{'feed'}->{'entry'};
?>
<!DOCTYPE html>
    <html lang="en">
    <head>
        <meta charset="UTF-8">
        <title>Get Google Spreadsheet Data</title>
        <link rel="stylesheet" href="http://yandex.st/bootstrap/3.3.0/css/bootstrap.min.css">
    </head>
    <body>

        <div class="container">
            <div class="page-header">
                <h1>Get Google Spreadsheet Data Example</h1>
                <p>See article <a target="_blank" href="http://rilin.ru/poluchaem-dann…le-i-vyvodim-i/">here</a></p>
            </div>

            <?php foreach ($rows as $row): ?>
                <div class="jumbotron">
                    <h1>
                        <?php echo $row->{'gsx$title'}->{'$t'}; ?>
                    </h1>
                    <h2>
                        <?php echo $row->{'gsx$subtitle'}->{'$t'}; ?>
                    </h2>
                        <?php echo $row->{'gsx$description'}->{'$t'}; ?>
                </div>
            <?php endforeach; ?>

        </div>

    </body>
</html>

以上是关于html 获取Google电子表格数据的主要内容,如果未能解决你的问题,请参考以下文章

从 Google 电子表格中获取 ID 或 URL

从 Google 电子表格请求 BigQuery API 会产生错误

如何从谷歌电子表格中获取 json 数据

html 简单的Google地图地图,其中包含由电子表格数据提供支持

谷歌脚本从电子表格中获取 json 数据

与服务帐户电子邮件共享 Google 表格