I have a requirement where I need the full absolute URL for an image blob link. I can get the image blob vanity URL, but it is relative. How would I include the root domain?
Map imageAssetWithBlob = newAssetReader()
.forAsset(AssetId)
.selectAll(true)
.includeLinks(true)
.addBlobLinkInfo(blobLink)
.includeLinksForBlobs(true)
.read();
return imageAssetWithBlob._bloblink_;