google-api-php-client
google-api-php-client copied to clipboard
A PHP client library for accessing Google APIs
Hi I'm getting undefined index 'type' and 'location' when trying to upload a 2MB csv file to Google Drive but I can't find any docs about 'type' and 'location' parameters....
I tried to use two plugins on the WordPress platform with PHP 8.0.0 which uses Google services, it created a critical error when one of them gave the error https://d.pr/i/jj9FSB...
Using the downloaded package (not installed through composer) version 2.9.1, the following error is thrown when trying to use a phpseclib dependency: `Fatal error: Uncaught RuntimeException: Please require phpseclib/phpseclib v2...
Starting on Wednesday June 8th, we are getting randomly 501 errors when trying to refresh tokens: ```json {"error": {"code": 501, "status": "UNIMPLEMENTED", "message": "Operation is not implemented, or supported, or...
First - nice feature, in version 2.7 to clean up unused services. Instructions from README.md are fine for dev env, on prod, with "typical" usage is not working. #### Environment...
After viewing the [Gsuite Quickstart](https://developers.google.com/docs/api/quickstart/php), they are implementing their own check for fetching a new access token via a refresh token. We have logic to do this already, so either...
I attempted to implement batchUpdateContacts found here: https://developers.google.com/people/api/rest/v1/people/batchUpdateContacts Psedo code: ```php $client = new Google_Client(); .... $service = new Google_Service_PeopleService($client); $res = $service->people->batchUpdateContacts($contacts); ``` The PHP Google Client Library responds...
These classes have been removed from https://github.com/googleapis/google-auth-library-php from version v1.19.0 https://github.com/googleapis/google-auth-library-php/releases/tag/v1.19.0 https://github.com/googleapis/google-api-php-client/blob/a9a27c25d625a95133f790f3b4a1036ad5b4e9eb/src/AuthHandler/Guzzle5AuthHandler.php#L8 https://github.com/googleapis/google-api-php-client/blob/a9a27c25d625a95133f790f3b4a1036ad5b4e9eb/src/AuthHandler/Guzzle5AuthHandler.php#L9 https://github.com/googleapis/google-api-php-client/blob/a9a27c25d625a95133f790f3b4a1036ad5b4e9eb/src/AuthHandler/Guzzle5AuthHandler.php#L10
Unable to create or update FreeFormServiceItem even when first created from Business Profile Manager
Hello. I'm currently trying to create a FreeFormServiceItem and I'm running into the following error ```JSON { "error": { "code": 400, "message": "Request contains an invalid argument.", "status": "INVALID_ARGUMENT", "details":...
I'm trying to make [batched requests](https://developers.google.com/gmail/api/guides/batch) more efficient by getting [partial responses](https://developers.google.com/tasks/performance#partial-response). I'm interested to get just certain headers (from, to, subject) and the message body. My code works fine...