我管理的,這裏是我的解決方案:
<?php
$apiKey="yourAPIkey";
include_once 'vendor/autoload.php';
$client = new Google_Client();
$client->setApplicationName("Client_Library_Examples");
$client->setDeveloperKey($apiKey);
$service = new Google_Service_Sheets($client);
$spreadsheetId = 'SheetID';
$range = 'A1:B';
$response = $service->spreadsheets_values->get($spreadsheetId, $range);
$values = $response->getValues();
if (count($values) == 0) {
print "No data found.\n";
} else {
print "Name, Major:\n";
foreach ($values as $row) {
printf("<p>%s, %s</p>", $row[0], $row[1]);
}
}
?>
Install library
Get Simple API access key
可以r是Web應用程序的自己,然後把它放在你的網站上的iframe。 –
@Karl_S我明白了這一點,但你能給我更多的提示:如何讓它記住它是我?不知何故,我必須保存一個密鑰? – petriichuk
當您[將腳本部署爲Web應用程序](https://developers.google.com/apps-script/guides/web)時,您會告訴它以自己身份運行。說明和嵌入它在這個鏈接 –