Description
Kindly advice me to resolve that issue. Please provide the solution.
New Issue Checklist
- I am not disclosing a vulnerability.
- I am not just asking a question.
- I have searched through existing issues.
- I can reproduce the issue with the latest versions of Parse Server and the Parse JS SDK.
Issue Description
I am using Parse version - 3.4.3. I am trying to parse file with base64. The Base64 file should be large. When I try with large base64 string it will throw this error.
Cannot create a Parse.File without valid data URIs or base64 encoded data.
Steps to reproduce
Parse large base64 string you will get this error
Filesystem.readFile({
path: path
})
.then(res => {
let ParseFile = new Parse.File(filename, { base64: basefile }); // Issue Occur here
console.log('fs: ', res.data);
})
.catch(err => console.log('fs err: ', err));
Actual Outcome
Cannot create a Parse.File without valid data URIs or base64 encoded data.
Expected Outcome
Need to save the file.
Environment
Parse version - 3.4.3
Ionic @latest
NPM Latest LTS
Capacitor
Server
- Parse Server version: ``
- Operating system:
Mac OS
- Local or remote host (AWS, Azure, Google Cloud, Heroku, Digital Ocean, etc):
FILL_THIS_OUT
Database
- System (MongoDB or Postgres):
FILL_THIS_OUT
- Database version:
FILL_THIS_OUT
- Local or remote host (MongoDB Atlas, mLab, AWS, Azure, Google Cloud, etc):
FILL_THIS_OUT
Client
- Parse JS SDK version:
3.4.3
Logs
I have attached the screenshot for your reference.