按 API 还原导入/导出



我正在寻找一种从java代码以编程方式调用firestore导入/导出功能的方法。

到目前为止,我发现漂亮的 firestore 客户端库尚不支持导入/导出调用。但是更低级别的 rest/grpc api 已经支持它们。使用java库,我尝试了以下方法:

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"

我无法获得正式的登录方式来工作,因为消防店构建器没有接受AppEngineCredentials实例的方法。

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

感谢您的阅读!卡斯滕

您可以将此云数据存储示例改编为 Cloud Firestore。在此处查看他们如何获取访问令牌:

import com.google.appengine.api.appidentity.AppIdentityService;
import com.google.appengine.api.appidentity.AppIdentityServiceFactory;
// Get an access token to authorize export request
      ArrayList<String> scopes = new ArrayList<String>();
      scopes.add("https://www.googleapis.com/auth/datastore");
      final AppIdentityService appIdentity = AppIdentityServiceFactory.getAppIdentityService();
      final AppIdentityService.GetAccessTokenResult accessToken =
          AppIdentityServiceFactory.getAppIdentityService().getAccessToken(scopes);
      connection.addRequestProperty("Authorization", "Bearer " + accessToken.getAccessToken());

相关内容

  • 没有找到相关文章

最新更新