我无法找到自己做错了什么,所以在我的项目中遇到了一个奇怪的问题。我正在尝试将图像上传到我的博客,并且我正在使用aws s3配置来执行此操作。我相信我的配置是正确的,但以防万一我将它们添加到那里:
此处是我的cors配置
<?xml version="1.0" encoding="UTF-8"?>
<CORSConfiguration xmlns="http://s3.amazonaws.com/doc/2006-03-01/">
<CORSRule>
<AllowedOrigin>*</AllowedOrigin>
<AllowedMethod>GET</AllowedMethod>
<MaxAgeSeconds>3000</MaxAgeSeconds>
<AllowedHeader>Authorization</AllowedHeader>
</CORSRule>
<CORSRule>
<AllowedOrigin>http://localhost:3000</AllowedOrigin>
<AllowedMethod>PUT</AllowedMethod>
<MaxAgeSeconds>3000</MaxAgeSeconds>
<AllowedHeader>*</AllowedHeader>
</CORSRule>
</CORSConfiguration>
我所有的IAM策略和用户api均已按顺序激活。这是我后端中的代码:
const s3 = new AWS.S3({
accessKeyId: keys.aws.clientID,
secretAccessKey: keys.aws.clientSecret,
signatureVersion: "v4",
region: "eu-west-3"
})
const router = express.Router()
// @route GET api/posts/upload
// @desc Upload an image on amazone server API
// @access Private
router.get(
"/upload",
passport.authenticate("jwt", { session: false }),
(req, res) => {
const key = `${req.user.id}/${uuid()}.jpeg`
s3.getSignedUrl(
"putObject",
{
Bucket: "bebeyogini",
ContentType: "image/jpeg",
Key: key
},
(err, url) => res.send({ key, url })
)
}
)
当我呼叫/ upload端点时,它会返回
<Error>
<Code>SignatureDoesNotMatch</Code>
<Message>
The request signature we calculated does not match the signature you provided. Check your key and signing method.
</Message>
那为什么在我的前端(在redux中)我添加了一个PUT,所以我要在标题中添加内容类型文件。但仍然无法在该项目中工作
export const sendPost = (newPost, file, history) => async dispatch => {
dispatch(loading())
const uploadConfig = await axios.get("/api/posts/upload")
console.log(uploadConfig)
console.log(uploadConfig.data)
await axios.put(uploadConfig.data.url, file, {
headers: {
"Content-Type": file.type
}
})
const res = await axios.post("/api/posts", {
...newPost,
imageUrl: uploadConfig.data.key
})
history.push("/dashboard")
dispatch({
type: POSTS_FETCHED,
payload: res.data
})
}
几个月前,我在另一个项目中成功使aws s3进行了相同的配置,而我两者之间的唯一区别是,解决的一个是使用cookie会话设置的,而这是一个jwt-token在标题中。
如果有人有主意...我完全被困住了! 在这里
错误状态:
bebeyogini.s3.eu-west-3.amazonaws.com/5bc0eca10743075fecb360f2/8bb4ff60-d8e7-11e8-ad9d-f776f418fd42.jpeg?Content-Type=image%2Fjpeg&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAIAMYTIX267RJ5E4A%2F20181026%2Feu-west-3%2Fs3%2Faws4_request&X-Amz-Date=20181026T062242Z&X-Amz-Expires=900&X-Amz-Signature=943652af4bea7e8e0e6d0f97503ea997817e7d68e0540c599643d612d71fe693&X-Amz-SignedHeaders=host:1 PUT https://bebeyogini.s3.eu-west-3.amazonaws.com/5bc0eca10743075fecb360f2/8bb4ff60-d8e7-11e8-ad9d-f776f418fd42.jpeg?Content-Type=image%2Fjpeg&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAIAMYTIX267RJ5E4A%2F20181026%2Feu-west-3%2Fs3%2Faws4_request&X-Amz-Date=20181026T062242Z&X-Amz-Expires=900&X-Amz-Signature=943652af4bea7e8e0e6d0f97503ea997817e7d68e0540c599643d612d71fe693&X-Amz-SignedHeaders=host 400 (Bad Request)
createError.js:17 Uncaught (in promise) Error: Request failed with status code 400
at createError (createError.js:17)
at settle (settle.js:19)
at XMLHttpRequest.handleLoad (xhr.js:78)
答案 0 :(得分:1)
The request signature we calculated does not match the signature you provided. Check your key and signing method.
表示您的预签名数据与您要上传的数据不匹配。
您签名的数据:
{
Key: `${req.user.id}/${uuid()}.jpeg`
ContentType: "image/jpeg",
}
您的文件元:
{
Name: file.name
ContentType: "image/jpeg",
}
file.name
!== ${req.user.id}/${uuid()}.jpeg
您可以将客户端的文件名更改为服务器端的相同文件名(已生成的文件名),或使用相反的方式
答案 1 :(得分:1)
好几个晚上的痛苦之后,我确实找到了问题的解决方案。请注意,AWS S3不接受其PUT请求中包含的jwt承载令牌。因此,您在执行请求时必须禁用它。在这里,我可以使用axios库在我的前端对其进行修复...
export const sendPost = (values, file, history) => async dispatch => {
dispatch(loading())
const uploadConfig = await axios.get("/api/posts/upload")
delete axios.defaults.headers.common["Authorization"]
await axios.put(uploadConfig.data.url, file, {
headers: {
ContentType: file.type
}
})
const token = localStorage.getItem("jwtToken")
axios.defaults.headers.common["Authorization"] = token
const res = await axios.post("/api/posts", {
...values,
imageUrl: uploadConfig.data.key
})
dispatch({
type: POSTS_FETCHED,
payload: res.data
})
history.push("/dashboard")
}