Skip to content

Instantly share code, notes, and snippets.

View kylanhurt's full-sized avatar
💭
Working Hard

Kylan Hurt kylanhurt

💭
Working Hard
  • San Diego, California USA
View GitHub Profile
@printminion
printminion / DriveToCsv.php
Last active September 8, 2022 00:42
Download google drive spreadheet as csv
<?php
session_start();
define('SPREADSHEET_ID', '<YOUR_SPREADSHEET_ID_HERE>');
define('SPREADSHEET_SHEET_ID', '<YOUR_SPREADSHEET_SHEET_ID_HERE>');
$configurationFile = getcwd() . '/client_secret.json';
if (!file_exists($configurationFile)) {
echo 'please client_secret.json is not available. Please download it form https://console.developers.google.com/' . PHP_EOL;