pull queues authorization from compute
问题 I'm trying to access a pull queue from google compute with the compute OAuth token using python from oauth2client import gce from apiclient.discovery import build import httplib2 credentials = gce.AppAssertionCredentials('') http = httplib2.Http() http=credentials.authorize(http) credentials.refresh(http) service = build('taskqueue', 'v1beta2', http=http) tq=service.taskqueues() tq.get(project=MY_APPENGINE_PROJECT, taskqueue=PULL_QUEUE_NAME, getStats=True).execute() I keep getting HttpError