You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@silverbuggy the "Missing Key" error indicates that the object can't be found in the bucket.. I would double check the path of the content.
When testing locally I also ran into this error as well. After stepping through the GetObject method in s3-proxy I noticed that my Express route was being added to the S3 path as such:
Persistently getting S3 Missing Key despite correct credentials. Any help would be appreciated:
import express from "express";
import s3Proxy from "s3-proxy";
const app = express();
app.get("/*", s3Proxy({
bucket: "ymw",
accessKeyId: "XXX",
secretAccessKey: "YYY",
overrideCacheControl: "max-age=100000",
defaultKey: "earth.jpg"
}));
app.listen(80, () => {
console.log("App listening on port 80")
})
The text was updated successfully, but these errors were encountered: