我基本上只是尝试访问我投放到数据存储区的应用程序的远程API。我可以通过shell访问它,但不能在本地应用程序脚本中访问它。
我试过这个:
from google.appengine.ext.remote_api import remote_api_stub
import getpass
def auth_func():
return (raw_input('Username:'), getpass.getpass('Password:'))
remote_api_stub.ConfigureRemoteApi(None, '/remote_api', auth_func,
'your_app_id.appspot.com')
但即使一切看起来都正确(路径和应用程序名称),仍然会获得HTTPError: HTTP Error 404: Not Found
。最近在app引擎上发生了什么变化?