简体   繁体   中英

Amazon AWS get object URI

I am using following code to get URI but it gives exception:

s3.putObject(bucket, fileToPut, file.ref.file)
        val s3Object = s3.getObject(bucket, fileToPut).orNull
        if(s3Object != null){
          val assetUrl = s3Object.getObjectContent.getHttpRequest.getURI
         }

在此处输入图片说明

I am unable to get uploaded object URI

Please help

如果只需要对象的网址,则可以使用

s3Client.getResourceUrl("your-bucket", "path/file.txt");

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM