私はこの人とまったく同じ問題を抱えています:
https://groups.google.com/forum/#!topic/google-appengine-java/4y90M9NlWsA
しかし、応答がなく、インターネット上で役立つものは他にありません。なぜこれが起こるのか誰にも分かりますか?
RemoteApiOptions options = new RemoteApiOptions()
.server("localhost", 8888)
.credentials("blah@blah.blah", "");
RemoteApiInstaller installer = new RemoteApiInstaller();
installer.install(options);
スタックトレースは次のとおりです。
Exception in thread "main" java.io.IOException: unexpected response from remote api: {rtok: null, app_id: MyCorrectAppId}
at com.google.appengine.tools.remoteapi.RemoteApiInstaller.getAppIdFromServer(RemoteApiInstaller.java:326)
at com.google.appengine.tools.remoteapi.RemoteApiInstaller.loginImpl(RemoteApiInstaller.java:278)
at com.google.appengine.tools.remoteapi.RemoteApiInstaller.login(RemoteApiInstaller.java:239)
at com.google.appengine.tools.remoteapi.RemoteApiInstaller.install(RemoteApiInstaller.java:106)
at uk.blah.blah.MyClass.main(MyClass.java:114)