dkaraj
Results
1
issues of
dkaraj
``` 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...
status: blocked
api: chromewebstore