我想在我的GAE托管的php应用程序中使用Task Queue 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"
}
}
我在https://developers.google.com/apis-explorer/#p/taskqueue/v1beta2/尝试了apis-explorer但是(例如)在taskqueue.tasks.list方法 我输入项目"我的GAE php应用程序的名称",taskqueue默认,我得到的ID与之前相同。
文件说: 在Google Developers Console中激活Google App Engine任务队列。 (如果API未在开发人员控制台中列出,则跳过此步骤。)
API未列出。
有什么想法吗?