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
I have included vur-dropezone in my app. and written a service in node.js to return the required signature to upload the file to s3 directly from the browser.
We need to assign value to "key" for creating a signature above(in my case, key is the file name), then how can i send the key value(file name ) from the front end ?
Is my postEndpoint correct? i have given in a format s3-url/bucketname
Second URL:
url: http://localhost:3000/getSignedUrl
purpose: for getting a pre-signed url (which is created by aws-sdk)
We need to assign value to "key" for creating a signature above(in my case, key is the file name), then how can i send the key value(file name ) from the front end ?
The response you are getting from url signer is invalid. Check this comment on #327 (comment)
Also, It is clearly mentioned in docs that response of url signer should be as below,
I have included vur-dropezone in my app. and written a service in node.js to return the required signature to upload the file to s3 directly from the browser.
here is my html code
and
here i have given two urls,
first url:
url:
http://localhost:3000/getPostSignature
purpose: for getting signature (required format for vue-dropezone)
response: given below
here i have some doubts,
Second URL:
url:
http://localhost:3000/getSignedUrl
purpose: for getting a pre-signed url (which is created by aws-sdk)
Response:
These are the setups that i made to achieve my requirement.But still I'm not able to upload the file to s3 bucket,
but I'm getting the below error while uploading the pic from the browser.
I'm i missing anything on my code? or is there any mistake in my code?
I'm still confused about the Urls and its responses.
The text was updated successfully, but these errors were encountered: