Google app engine GAE谷歌任务api“;错误:未找到";

Google app engine GAE谷歌任务api“;错误:未找到";,google-app-engine,python-2.7,google-tasks-api,Google App Engine,Python 2.7,Google Tasks Api,我遵循了关于GAE的google task api教程: 他们所做的一切我都试过了 我在路线中添加了以下内容: ('/mytask', mytask), ('/mytask'+ decorator.callback_path, decorator.callback_handler()), 但我得到了以下错误: Error: Not Found The requested URL /oauth2ca

我遵循了关于GAE的google task 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.

你们能告诉我哪里会出现bug吗?

你们没有将处理程序附加到正确的URL:你们在前面加了“/mytask”。如果不想在默认/oauth2callback上使用它,那么在创建
OAuth2Decorator