小弟是程式新手想研究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' 的例外状况。]
查了一天都还是卡在同一个地方,请高手相救~
感激万分!!