server-examples icon indicating copy to clipboard operation
server-examples copied to clipboard

Server-side examples for the Fine Uploader library

Results 4 server-examples issues
Sort by recently updated
recently updated
newest added

The first error I've got was at line 54: `request_payload = json.loads(request.body)`, saying that the parameter must be 'str', not 'bytes'. I've fixed it writing this instead: `request_payload = json.loads(request.body.decode())`....

In case of concurrent chunking, first all chunks are stored into a folder, then a write operation is performed and finally I success request is sent back. In async mode,...

Add dependencies into package.json. Update to express v4. Add CORS. Add environment variables instead of configuring the javascript variables. Add error/warnings for missing environment variables.