google-api-php-client icon indicating copy to clipboard operation
google-api-php-client copied to clipboard

A PHP client library for accessing Google APIs

Results 84 google-api-php-client issues
Sort by recently updated
recently updated
newest added

All the classes in [`google/apiclient-services`](https://github.com/google/google-api-php-client-services) are dependent on `Google_Model`, `Google_Service`, and `Google_Collection`. These classes are not required directly by any classes in *this* repository. Proper separation of concerns dictates these...

type: feature request

API lacks some code comments that enables IDEs to properly hint code. Example: ``` $service = new Google_Service_Analytics(/* ... */); $accounts = $service->management_accounts->listManagementAccounts([ /* parameters */]); // ^ // |...

type: feature request
template

:robot: I have created a release *beep* *boop* --- ## [2.17.0](https://github.com/googleapis/google-api-php-client/compare/v2.16.0...v2.17.0) (2024-05-02) ### Features * Add the protected apiVersion property ([#2588](https://github.com/googleapis/google-api-php-client/issues/2588)) ([7e79f3d](https://github.com/googleapis/google-api-php-client/commit/7e79f3d7be4811f760e19cc4a2c558e04196ec1d)) --- This PR was generated with [Release Please](https://github.com/googleapis/release-please)....

kokoro:force-run
autorelease: pending

Although I installed the latest version of "google-api-php-client", we can't fix the "Promise" error. I'm updating with "Composer" but we can't fix the "Promise" error. What am I doing wrong?...

![image](https://github.com/googleapis/google-api-php-client/assets/53290883/9adbd33b-6a34-43ac-8def-a84bfa1cd2bd) I'm not able to upload to google drive the file only has 50mb

#### Environment details - OS: MacOs - PHP version: 8.3.7 #### Steps to reproduce 1. As mentioned in the documentation, i am trying to get data for a particular location...

// Prepare attendees array $attendees = []; // Add organizer with 'responseStatus' set to 'accepted' $attendees[] = new \Google_Service_Calendar_EventAttendee([ 'email' => $user->email, 'responseStatus' => 'accepted', // Organizer should join immediately...

``` function insert_data_to_google_sheet($data): void { $client = getGoogleClient(); $service = new \Google_Service_Sheets($client); $spreadsheetId = '1BgVqitbiMSP2sNQNy1hk0PCoItxacbyeZvjH8Zc2qu0'; $range = 'Sheet1'; $values = [ $data ]; $valueRange = new \Google_Service_Sheets_ValueRange(); $valueRange->setValues($values); // I...