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
var https = require('https'), fs = require('fs'); var req = https.request({ hostname: 'storage.5apps.com', port: 443, method: 'PUT', path: '/dswg/test/' + new Date().getTime().toString(), headers: { 'If-None-Match': '*', 'Content-Type': 'asdf', Authorization: 'Bearer e8368b5e74b7dddc62ed468fdbf13617' } }, function(res) { console.log(res.headers); }); fs.createReadStream('example.png').pipe(req);
Make sure your example.png is large enough to trigger chunked encoding
The text was updated successfully, but these errors were encountered:
Run that as nodejs script, you'll see a 500 response.
Sorry, something went wrong.
Thanks for the report!
Thanks @michielbdejong, we've identified the issue, I will fix it tomorrow.
Return 422 when creating a binary file with an unsupported content type
a79d14c
Refs #56
This has been solved by moving away from Riak I suppose.
gregkare
No branches or pull requests
Make sure your example.png is large enough to trigger chunked encoding
The text was updated successfully, but these errors were encountered: