从服务构建 blobkey url

construct blobkey from serving url

给定 BlobKey,我知道如何获得服务 URL。

ServingUrlOptions options = ServingUrlOptions.Builder
    .withBlobKey(blobKey)
    .secureUrl(false);
String servingUrl = ImagesServiceFactory.getImagesService()
    .getServingUrl(options);

如果我得到 servingUrl,有没有办法构造一个 BlobKey?所以基本上是相反的。

没有

App Engine PHP 运行时工作人员的详细回答 here