Bonjour, ceci pourrait vous aider, tout d'abord, veuillez créer votre compte de développeur sur Google et générer un jeton d'accès, un identifiant client, etc. Ensuite, suivez ces étapes.
Conditions préalables
Pour exécuter ce quickstart, vous aurez besoin de :
PHP 5.4 ou supérieur avec l'interface de ligne de commande (CLI) et l'extension JSON installées. L'outil de gestion des dépendances Composer. Accès à Internet et à un navigateur Web. Un compte Google.
Étape 1 : activer l'API Google Sheets
Utilisez cet assistant pour créer ou sélectionner un projet dans la console des développeurs Google et activer automatiquement l'API. Cliquez sur Continuer, puis sur Aller aux informations d'identification. Sur la page Ajouter des informations d'identification à votre projet, cliquez sur le bouton Annuler. En haut de la page, sélectionnez l'onglet de l'écran de consentement OAuth. Sélectionnez une adresse électronique, saisissez un nom de produit s'il n'est pas déjà défini, puis cliquez sur le bouton Enregistrer. Sélectionnez l'onglet Informations d'identification, cliquez sur le bouton Créer des informations d'identification et sélectionnez ID client OAuth. Sélectionnez le type d'application Autre, entrez le nom "Google Sheets API Quickstart", puis cliquez sur le bouton Créer. Cliquez sur OK pour fermer la boîte de dialogue qui s'affiche. Cliquez sur le bouton file_download (Télécharger JSON) à droite de l'ID client. Déplacez ce fichier dans votre répertoire de travail et renommez-le client_secret.json.
Étape 2 : Installer la bibliothèque du client Google
Exécutez la commande suivante pour installer la bibliothèque à l'aide de composer :
php composer.phar require google/apiclient:^2.0
Consultez la page d'installation de la bibliothèque pour connaître les autres options d'installation. Étape 3 : Mise en place de l'échantillon
Créez un fichier nommé quickstart.php dans votre répertoire de travail et copiez-y le code suivant :
<?php
require_once __DIR__ . '/vendor/autoload.php';
define('APPLICATION_NAME', 'Google Sheets API PHP Quickstart');
define('CREDENTIALS_PATH', '~/.credentials/sheets.googleapis.com-php-quickstart.json');
define('CLIENT_SECRET_PATH', __DIR__ . '/client_secret.json');
// If modifying these scopes, delete your previously saved credentials
// at ~/.credentials/sheets.googleapis.com-php-quickstart.json
define('SCOPES', implode(' ', array(
Google_Service_Sheets::SPREADSHEETS_READONLY)
));
if (php_sapi_name() != 'cli') {
throw new Exception('This application must be run on the command line.');
}
/**
* Returns an authorized API client.
* @return Google_Client the authorized client object
*/
function getClient() {
$client = new Google_Client();
$client->setApplicationName(APPLICATION_NAME);
$client->setScopes(SCOPES);
$client->setAuthConfig(CLIENT_SECRET_PATH);
$client->setAccessType('offline');
// Load previously authorized credentials from a file.
$credentialsPath = expandHomeDirectory(CREDENTIALS_PATH);
if (file_exists($credentialsPath)) {
$accessToken = json_decode(file_get_contents($credentialsPath), true);
} else {
// Request authorization from the user.
$authUrl = $client->createAuthUrl();
printf("Open the following link in your browser:\n%s\n", $authUrl);
print 'Enter verification code: ';
$authCode = trim(fgets(STDIN));
// Exchange authorization code for an access token.
$accessToken = $client->fetchAccessTokenWithAuthCode($authCode);
// Store the credentials to disk.
if(!file_exists(dirname($credentialsPath))) {
mkdir(dirname($credentialsPath), 0700, true);
}
file_put_contents($credentialsPath, json_encode($accessToken));
printf("Credentials saved to %s\n", $credentialsPath);
}
$client->setAccessToken($accessToken);
// Refresh the token if it's expired.
if ($client->isAccessTokenExpired()) {
$client->fetchAccessTokenWithRefreshToken($client->getRefreshToken());
file_put_contents($credentialsPath, json_encode($client->getAccessToken()));
}
return $client;
}
/**
* Expands the home directory alias '~' to the full path.
* @param string $path the path to expand.
* @return string the expanded path.
*/
function expandHomeDirectory($path) {
$homeDirectory = getenv('HOME');
if (empty($homeDirectory)) {
$homeDirectory = getenv('HOMEDRIVE') . getenv('HOMEPATH');
}
return str_replace('~', realpath($homeDirectory), $path);
}
// Get the API client and construct the service object.
$client = getClient();
$service = new Google_Service_Sheets($client);
// Prints the names and majors of students in a sample spreadsheet:
// https://docs.google.com/spreadsheets/d/1BxiMVs0XRA5nFMdKvBdBZjgmUUqptlbs74OgvE2upms/edit
$spreadsheetId = '1BxiMVs0XRA5nFMdKvBdBZjgmUUqptlbs74OgvE2upms';
$range = 'Class Data!A2:E';
$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) {
// Print columns A and E, which correspond to indices 0 and 4.
printf("%s, %s\n", $row[0], $row[4]);
}
}
Étape 4 : Exécuter l'échantillon
Exécutez l'échantillon en utilisant la commande suivante :
php quickstart.php
La première fois que vous exécutez l'échantillon, il vous demandera d'autoriser l'accès :
Browse to the provided URL in your web browser.
If you are not already logged into your Google account, you will be prompted to log in. If you are logged into multiple Google accounts, you will be asked to select one account to use for the authorization.
Click the Accept button.
Copy the code you're given, paste it into the command-line prompt, and press Enter.
En savoir plus sur google sheets