couchdb-xd
couchdb-xd copied to clipboard
db.post return 415 unsupported media
PUTs work just fine, but I get a result 415 when I POST:
Couch.init(function() { var server = new Couch.Server('http://localhost:5984'); var db = new Couch.Database(server, 'dbname'); db.post({ hello: 'world' }, function(resp) { });
});
Seems it might be an issue with the content type? Thanks, wonderful library.
Sorry, forgot to mention that I'm using couch 1.1.0.
I'm having the same issue