0

我在 GAE 上遵循了这个谷歌任务 api 教程:https ://developers.google.com/appengine/articles/python/getting_started_with_tasks_api

我已经尝试了他们所做的一切。

我在路线中添加了这个:

                        ('/mytask', mytask),
                        ('/mytask'+ decorator.callback_path, decorator.callback_handler()),

但我收到以下错误:

Error: Not Found

The requested URL /oauth2callback?state=http://sadaf2605.appspot.com/mytask:rBFVjEpyDnAPoYsm-J6COToxMzY1NDM0ODg4&code=4/DVdE2clKgg1yfLTcFL9AdGzszVvj.snlDhp_QkQYZgrKXntQAax1q0onUewI was not found on this server.

你们能告诉我我在哪里可以期待一个错误吗?

4

1 回答 1

0

您没有将处理程序附加到正确的 URL:您使用“/mytask”作为前缀。如果您不希望它在默认的 /oauth2callback 上服务,那么您需要callback_path在创建时传递OAuth2Decorator

于 2013-04-08T17:02:47.667 回答