我正在尝试为通用 Blob(如 txt 文件或 pdf)获取服务 URL,但提供的方法仅适用于图像
BlobKey blobkey = {my blobkey};
ServingUrlOptions options = ServingUrlOptions.Builder.withBlobKey(blobkey);
String url = ImagesServiceFactory.getImagesService().getServingUrl(options);
有没有办法为通用 Blob 获取服务 URL,或者我能做到这一点的唯一方法是使用BlobStore 服务中的serve()方法?