google-api-python-client
google-api-python-client copied to clipboard
🐍 The official Python client library for Google's discovery based APIs.
It would be a great feature to allow in the cards syntax to allow expanding image elements for inspection. Specially for the mobile devices. Is this feature in the roadmap...
``` from google.oauth2.service_account import ServiceAccountCredentials from googleapiclient.discovery import build CLIENT_SECRET_FILE = 'client_secret.json' SCOPES = ['https://www.googleapis.com/auth/chromewebstore'] credentials = ServiceAccountCredentials.from_json_keyfile_name(CLIENT_SECRET_FILE, SCOPES) webstore_service = build('chromewebstore', 'v1.1', credentials=credentials) ``` I'm trying to connect to...
``` scopes = ['https://www.googleapis.com/auth/chromewebstore.admin'] credentials = ServiceAccountCredentials.from_json_keyfile_name('keyfile.json', scopes=scopes) ``` oauth2client.client.HttpAccessTokenRefreshError: invalid_scope: https://www.googleapis.com/auth/chromewebstore.admin is not a valid audience string.
[googleapis/oauth2client](https://github.com/googleapis/oauth2client) is a is deprecated. It is not listed as a dependency but we still have code and [tests](https://github.com/googleapis/google-api-python-client/blob/master/noxfile.py#L51) that use oauth2client. As a side benefit, if we drop oauth2client,...
Can this comment be deleted? https://github.com/googleapis/google-api-python-client/blob/c3a40921ba6a848be42ef4eff1a1a88fce46878b/setup.py#L44 The referenced issue was closed: https://github.com/googleapis/google-cloud-python/issues/10566 Also, can we loosen the restriction on versions 2.X.X of google-api-core? https://github.com/googleapis/google-api-python-client/blob/main/setup.py#L45 The requirements were introduced here: https://github.com/googleapis/google-api-python-client/pull/1715
#### Environment details - Python version: `python --3.6.5` - pip version: `pip --20.3.3` - `google-api-python-client` version: `1.12.8` #### Code example ```python # example from google.oauth2 import service_account import googleapiclient.discovery credentials...
What exactly is redirect_uri in Google OAuth2 request for getting authorization code in Mobile App?
According to the Mobile App Google [documentation](https://developers.google.com/identity/protocols/oauth2/native-app#custom-uri-scheme), there is a parameter named `redirect_uri` which is not clear to me. For example, in the Web App flow of Google OAuth2, the...
#### Environment details - OS: MacOS 12.5 - Python version: 3.9.16 - pip version: 22.0.4 - `google-api-python-client` version: 2.79.0 #### Steps to reproduce 1. Run the following code to get...
Hi Not sure what happens as this code worked well without any changes for few years but today I can't publish apk through api using google-api-python-client ``` Will release package...
#### Environment details - OS type and version: Windows 10 - Python version: 3.8.5 - pip version: 22.2.2 - `google-api-python-client` version: 2.63.0 #### Steps to reproduce 1. Go to: https://developers.google.com/youtube/v3/docs/playlists/list#try-it...