リモート API を使用してライブ データストアを更新できますが、ローカル データストアにも同様のものはありますか? 私のデータはCSV形式です。
以下のコードを使用してローカルに接続しようとすると
String username = "test";
String password = "test";
RemoteApiOptions options = new RemoteApiOptions().server("localhost", 8888).credentials(username, password);
RemoteApiInstaller installer = new RemoteApiInstaller();
installer.install(options);
例外が発生します:
スレッド「メイン」での例外 java.net.UnknownHostException: http
例外は次の行でスローされます。
インストーラー.インストール(オプション);
ローカル サーバーは実行されていますが、正しく接続されていますか? ローカルの remote_api サーバーを個別に起動する必要がありますか?