Can anybody tell me how to communicate with couchDB database server with corona lua? The server returns jason data. I have never used corona’s networking functions apart from using 3rd party tools like noobhub.
example commands…
Accessing server information Request: curl http://127.0.0.1:5984/ Response: { "couchdb": "Welcome", "version":"1.1.0" } Creating a database named wiki Request: curl -X PUT http://127.0.0.1:5984/wiki Response: {"ok": true}