我正在尝试使用 python 使用计算 OAuth 令牌从谷歌计算访问拉取队列
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()
我不断收到 HttpError 403“您不允许进行此 api 调用”
请帮忙,我错过了什么配置?
谢谢, 谢伊