Questions tagged [google-api-client]

**[DO NOT USE THIS TAG]** Please use the language specifying tag for your question instead of this tag.

Please use the language specifying tag for your question instead of this tag.

Below is the original wiki for this tag.

This is an obsolete tag used for an android sdk that no longer exists.

The GoogleApiClient The main entry point for Google Play services integration

Documentation can be found here.

1581 questions
4
votes
3 answers

Youtube API v3 Search own videos by tag

Is it possible to search videos by tags using Youtube API v3 ? I would like to search among my own videos.
roman
  • 268
  • 6
  • 13
4
votes
1 answer

Retrieve Google userdata from server by ID token

I've been beating my head against the wall for about two days now, time to ask for help. I've been trying to get my head around the following: A mobile app user signs in on the app using one of the following: Google Facebook etc... I'll focus on…
Frank van Luijn
  • 470
  • 4
  • 16
4
votes
1 answer

Can Insert objects created from the same Storage object be executed concurrently?

I'm using Google's Java API to work with Google Cloud Storage (GCS). I have multiple worker threads that insert objects into GCS. Currently they share a common Storage instance, and use this to create Storage.Object.Insert…
4
votes
2 answers

Receiving error 403 in Google Drive API - Daily Limit for Unauthenticated Use Exceeded. Continued use requires signup

I'm using the Google Drive API for ruby, and I'm trying to insert a file into an user drive. I can insert the file with success, but then, when I try to get the file Self Link, this is the URL returned…
4
votes
1 answer

Are there published specs for Google API bandwidth?

I am developing a Google APP Engine or possibly just direct GCS application. The client captures video streams from cameras and would like to selectively stream these to the cloud. Possible targets are: A Google App Engine app Google Cloud Storage…
4
votes
1 answer

Create Google Contact --> Why Only "NAME" not inserted in new contact?

Here is what I have made request :- // create new entry $doc = new DOMDocument(); $doc->formatOutput = true; $entry = $doc->createElement('atom:entry'); $entry->setAttributeNS('http://www.w3.org/2000/xmlns/', 'xmlns:atom',…
Vimal Patel
  • 607
  • 5
  • 19
4
votes
1 answer

How do I trigger virus check on files in Google Drive API?

I'm trying to check the Google Drive virus checking behavior through the API. Through the Google Drive UI, I can download the file and it tells me it is infected with a virus. However, when I download the same file that was uploaded through the API,…
Matthew
  • 1,555
  • 1
  • 13
  • 13
3
votes
1 answer

freebase search api

How can I only return results which have a notable type? IE when I have the default example: https://www.googleapis.com/freebase/v1/search?query=nirvana&indent=true It normally returns something like: { "mid": "/m/015k7", "name": "Gautama…
ere
  • 1,739
  • 3
  • 19
  • 41
3
votes
1 answer

Where to find proper documentation of Google Drive API Python client library

I want to use Google's Python client libraries to access the Google Drive API (v3). There is a quickstart document that shows the basic usage of some of Google's Python packages, but I cannot find a proper, complete documentation anywhere. Where do…
Alex
  • 3,316
  • 4
  • 26
  • 52
3
votes
0 answers

google/apiclient is not getting installed

I am trying to install google/apiclient:^2.0 in my project and it gives me errors as below, Your requirements could not be resolved to an installable set of packages. Problem 1 - Root composer.json requires laravel/framework 5.8.*, found…
Anil Parshi
  • 875
  • 5
  • 21
3
votes
1 answer

Google Ads API (The caller does not have permission)

I am using google-ads-api. My goal is to get impressions and clicks for specific campaign. These are the things I have done. created google service account Downloaded google-ads-library from github Added clientid , secretid, refresh token to my…
Ammar khan
  • 31
  • 4
3
votes
0 answers

Is it possible to create a Google Document directly from a Template's JSON

Since the Docs API allows for retrieval of Google Docs via JSON, is there a way to directly inject that JSON data, with alterations, into a new Google Document? I have several Google Documents that are used as templates for contract agreements, and…
3
votes
2 answers

Is there any API available for Retrieve images in the cell from a google spreadsheet?

I'm trying to Retrieve images in the cell from a google spreadsheet. I checked this question is already available. and I also referred to this documentation. But, these both are no longer work. Does anyone suggests me API or provides any good…
3
votes
2 answers

Google API error - Could not determine client ID from request

i'm using google-api-php-client to request an access token from the client 0auth flow, but it returns the error "Could not determine client ID from request". My code is below. My client_secret.json: "web": { "client_id":"123", …
3
votes
0 answers

How to upload two deobfuscationfiles for one APK using androidpublisher?

Is it possible to upload "ReTrace mapping file" and "Native debug symbols" simultaneously for a single APK? We use "androidpublisher_v3" from googleapis npm package ("googleapis": "^70.0.0") in our application and we manage to publish a new APK with…