We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Here is my jsx code:
<ReactS3Uploader getSignedUrl={props.getSignedUrl} accept="image/*" onProgress={onProgress} onError={onError} onFinish={onFinish} uploadRequestHeaders={{ 'x-amz-acl': 'public-read' }} contentDisposition="auto" />
Here is my method:
getSignedUrl = async (file, callback) => { const { dispatch } = this.props; const params = { objectName: file.name, contentType: file.type }; const response = await dispatch(getSignedUrl(params)); console.log(response); callback(response); }
The above dispatch method is getting signed url from my NestJs server.
Here is my error:
The text was updated successfully, but these errors were encountered:
@abhimanusharma were you able to solve this?
Sorry, something went wrong.
@abhimanusharma @mclean25 any updates?
Also getting a cors issue when uploading, it would be good to know if there is something wrong or it's just something in the server settings
No branches or pull requests
Here is my jsx code:
Here is my method:
The above dispatch method is getting signed url from my NestJs server.
Here is my error:
The text was updated successfully, but these errors were encountered: