Есть таблица MySql хочу просто передавать данные из ее в Google sheets, но запутался c Google_Client.
Для этого я могу использовать только API key?
Using API Keys
https://developers.google.com/api-client-library/p...When calling APIs that do not access private user data, you can use simple API keys.
мой код не рабочий для примера, хотя бы получить значения ячеек.
require_once __DIR__ . '/vendor/autoload.php';
$client = getClient();
$service = new Google_Service_Sheets($client);
// The ID of the spreadsheet to retrieve data from.
$spreadsheetId = 'id моего файла excel'; // TODO: Update placeholder value.
// The A1 notation of the values to retrieve.
$range = 'имя страницы excel'; // TODO: Update placeholder value.
$response = $service->spreadsheets_values->get($spreadsheetId, $range);
// TODO: Change code below to process the `response` object:
echo '<pre>', var_export($response, true), '</pre>', "\n";
function getClient() {
$client = new Google_Client();
$client->setApplicationName("Client_Library_Examples");
$client->setDeveloperKey("мой api key");
return $client;
}
?>
используя quickstart.php
https://developers.google.com/sheets/api/quickstar...
все легко получилось,
но я хочу разобраться как это сделать через console.developers.google.com/apis создав там ключ api