从Google Cloud Java客户端库获取图片服务网址

时间:2018-09-29 11:21:27

标签: google-app-engine google-cloud-platform

可以使用以下代码接收来自AppEngine的图像服务提供网址。

ServingUrlOptions options = ServingUrlOptions.Builder
        .withGoogleStorageFileName("/gs/" + bucket + "/image.jpeg")
        .secureUrl(true);
String url = imagesService.getServingUrl(options);

如何通过Google Cloud Java客户端库获取图片投放网址?

Github Link并没有提供太多有关图像服务的信息。支持吗?

1 个答案:

答案 0 :(得分:0)

请确保您的图片是公开的。 blob.getMediaLink()将打印图像网址。

import React, { Component } from "react";
import EventManager from "../bridge";

class Leftbar extends Component {
  state = {
    status: "",
    firstname: "",
    {...}

  };

  componentDidMount() {
    EventManager.addHandler(
      "updateCharacterInfo",
      this.updateCharacterInfo.bind(this)
    );
  }

  componentWillUnmount() {
    EventManager.removeHandler("updateCharacterInfo", this.updateCharacterInfo);
  }