我尝试使用Google App Engine Remote API从我的开发服务器连接到生产数据存储区。看起来第一个请求是成功的,我确实连接到生产数据存储区,但是在后续请求中它没有正确连接,我收到此消息:
remote API is already installed
这是我用来连接Remote API的代码:
try {
RemoteApiOptions options = new RemoteApiOptions()
.server("xxxxx.appspot.com", 80)
.useServiceAccountCredential("xxxxx@appspot.gserviceaccount.com",
"WEB-INF/xxxxxx-xxxxxx.p12");
RemoteApiInstaller installer = new RemoteApiInstaller();
installer.install(options);
} catch (Exception e) {
System.out.println(e.getMessage());
}
不确定它是否相关,但我使用objectify与数据存储区进行交互