每个API的Firestore导入/导出

时间:2019-04-11 15:21:43

标签: java firebase google-app-engine google-cloud-firestore google-client-login

我正在寻找一种从Java代码以编程方式调用firestore import/export功能的方法。

到目前为止,我发现不错的firestore client library还不支持导入/导出调用。但是较低级别的rest/grpc api已经支持它们。使用java library,我尝试了以下操作:

Firestore firestoreApi = new Firestore
    .Builder(UrlFetchTransport.getDefaultInstance(), new GsonFactory(), null)
    .setApplicationName(SystemProperty.applicationId.get())
    .build();

GoogleFirestoreAdminV1beta2ImportDocumentsRequest importRequest = new GoogleFirestoreAdminV1beta2ImportDocumentsRequest();
importRequest.setInputUriPrefix(String.format("gs://{}/{}/", BUCKET, image));

GoogleLongrunningOperation operation = firestoreApi
    .projects()
    .databases()
    .importDocuments("projects/" + SystemProperty.applicationId.get() + "/databases/(default)", importRequest)
    .execute();

在应用程序引擎中运行时,遗憾的是缺少权限:

com.google.api.client.googleapis.json.GoogleJsonResponseException: 401
{
  "code": 401,
  "errors": [
    {
      "domain": "global",
      "location": "Authorization",
      "locationType": "header",
      "message": "Login Required.",
      "reason": "required"
    }
  ],
  "message": "Request is missing required authentication credential. Expected OAuth 2 access token, login cookie or other valid authentication credential. See https://developers.google.com/identity/sign-in/web/devconsole-project.",
  "status": "UNAUTHENTICATED"

我无法让official way登录才能工作,因为firestore构建器没有接受AppEngineCredentials实例的方法。

我已经检查了python客户端库,它似乎也不支持这些方法(尚未)。 有谁知道我如何使用旧的rest api登录或获取支持这些方法的客户端库(请在应用程序引擎上运行某些语言:))

感谢您的阅读! 卡斯滕

1 个答案:

答案 0 :(得分:1)

您可以将此Cloud Datastore example修改为Cloud Firestore。在此处查看他们如何获得访问令牌:

_driver.SwitchTo().DefaultContent();