Google App Engine远程API服务帐户凭据错误

问题描述 投票:1回答:0

我目前正在使用远程api for google app引擎连接到另一个GAE项目的数据存储区。

以下是我的代码:

RemoteApiOptions选项;

    options = new RemoteApiOptions().server("project_id.appspot.com",443).useServiceAccountCredential("[email protected]","EPHIMS-cbe10d4a5105.json");

RemoteApiInstaller installer = new RemoteApiInstaller();
installer.install(options);

当我运行我的应用程序时,我收到以下错误:java.lang.RuntimeException:无法构建服务帐户凭据。 引起:java.io.FileNotFoundException:EPHIMS-cbe10d4a5105.json(系统找不到指定的文件)java.io.FileInputStream.open0(Native Method)

有谁知道如何解决这一问题? - 我创建了一个环境变量并将其设置为.json文件所在的路径,但这仍然无效。

google-app-engine service
© www.soinside.com 2019 - 2024. All rights reserved.