gpt4 book ai didi

ios - 通过 CloudFront 将内容上传到 S3

转载 作者:可可西里 更新时间:2023-11-01 05:36:51 24 4
gpt4 key购买 nike

我正在开发一个需要将图像上传到 S3 的应用程序。现在我这样做:

S3PutObjectRequest *por = [[S3PutObjectRequest alloc] initWithKey:nameOfThePicture inBucket:nameOfTheBucket];
por.contentType = @"image/jpg";
por.data = imageData;

// Put the image data into the specified s3 bucket and object.
S3PutObjectResponse *putObjectResponse = [self.s3 putObject:por];
por.delegate = self;

直接上传图片到S3太慢,我配置了CloudFront服务。 现在,我想通过 CloudFront 将图像上传到 S3 中的原始存储桶。有可能做到吗?如果是,我该怎么做?

非常感谢,

维克多

最佳答案

没有。 CloudFront 是一种单向事件 — 您可以通过 CloudFront 从 S3 检索对象,但不能通过 CloudFront 将对象上传到 S3。

关于ios - 通过 CloudFront 将内容上传到 S3,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15559203/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com