[问题] MVC上传档案到AWS S3

楼主: gn00595067 (天佑)   2016-06-07 22:01:57
小弟是程式新手想研究MVC上传S3功能,
nuget载完awssdk后,
试做了一个controller跟一个view想传档案
using Amazon.S3;
using Amazon.S3.Model;
using System;
using System.Collections.Generic;
using System.Configuration;
using System.Linq;
using System.Web;
using System.Web.Mvc;
namespace WebApplication17.Controllers
{
public class S3Controller : Controller
{
private static readonly string _awsAccessKey =
ConfigurationManager.AppSettings["AKxxxxxxxxxxxxxxxx"];
private static readonly string _awsSecretKey =
ConfigurationManager.AppSettings["Nfasxxxxxxxxxxxx"];
private static readonly string _bucketName =
ConfigurationManager.AppSettings["joxxxxxxx"];
public ActionResult UploadToS3()
{
return View();
}
[HttpPost]
public ActionResult UploadToS3(HttpPostedFileBase file)
{
try
{
IAmazonS3 client;
using (client = Amazon.AWSClientFactory.CreateAmazonS3Client(
_awsAccessKey, _awsSecretKey, Amazon.RegionEndpoint.APNortheast1))
{
var request = new PutObjectRequest()
{
BucketName = _bucketName,
CannedACL = S3CannedACL.PublicRead,//PERMISSION TO FILE PUBLIC ACCESIBLE
Key = string.Format("UPLOADS/{0}", file.FileName),
InputStream = file.InputStream,//SEND THE FILE STREAM
};
client.PutObject(request);
}
}
catch (Exception ex)
{
}
return View();
}
}
}
以下是view
@{
ViewBag.Title = "UploadToS3";
}
<h2>UploadToS3</h2>
<form action="@Url.Action("UploadToS3")" method="post"
enctype="multipart/form-data">
<label for="file">Filename:</label>
<input type="file" name="file" id="file" />
<input type="submit" />
</form>
可是不论如何都无法上传
拿掉catch会报错[AmazonS3Exception: The bucket you are attempting to access must be
addressed using the specified endpoint.
Please send all future requests to this endpoint.]
然后最后就显示[HttpErrorResponseException: 已发生类型 'Amazon.Runtime.Internal.
HttpErrorResponseException' 的例外状况。]
查了一天都还是卡在同一个地方,请高手相救~
感激万分!!
作者: KK2653 (赖打)   2016-06-08 12:58:00
RegionEndPoint确定跟bucket设置的地区是一样的吗?
楼主: gn00595067 (天佑)   2016-06-11 01:09:00
我最后发现我是犯了低级错误,一开始宣告的三个变量没抓到值, 直接把key跟bucketname字串塞进方法里就上传成功了 有没有设CannedACL我发现都可以感谢K大的热心帮忙!!! 有人支持真的很令人感动!

Links booklink

Contact Us: admin [ a t ] ucptt.com