Php 从API资源管理器访问任务队列REST API

Php 从API资源管理器访问任务队列REST API,php,api,google-app-engine,rest,google-api-php-client,Php,Api,Google App Engine,Rest,Google Api Php Client,我想在GAE托管的php应用程序中使用任务队列REST API,但我一直得到: 403 Forbidden Cache-Control: private, max-age=0 Content-Encoding: gzip Content-Length: 146 Content-Type: application/json; charset=UTF-8 Date: Tue, 01 Jul 2014 19:16:21 GMT Expires: Tue, 01 Jul 2014 19:1

我想在GAE托管的php应用程序中使用任务队列REST API,但我一直得到:

403 Forbidden

Cache-Control:  private, max-age=0
Content-Encoding:  gzip
Content-Length:  146
Content-Type:  application/json; charset=UTF-8
Date:  Tue, 01 Jul 2014 19:16:21 GMT
Expires:  Tue, 01 Jul 2014 19:16:21 GMT
Server:  GSE

{
"error": {
"errors": [
{
"domain": "global",
"reason": "forbidden",
"message": "you are not allowed to make this api call"
}
],
"code": 403,
"message": "you are not allowed to make this api call"
}
}
我尝试了API资源管理器,但(例如)尝试了taskqueue.tasks.list方法 我输入项目“我的GAE php应用程序的名称”,taskqueue默认值,得到与之前相同的403

文件说: 在Google开发者控制台中激活Google App Engine任务队列。(如果API未在开发人员控制台中列出,则跳过此步骤。)

API未列出


有什么想法吗?

我也有同样的问题