Using CouchDB, I am attempting to integrate with some third-party services. I have been using an update handler so I can record the responses to the database.
Unfortunately, in one case, I can specify the return URL, but I can't specify the method, and the method is always GET.
{
error: "method_not_allowed",
reason: "Update functions do not allow GET"
}
Is anyone aware of a workaround? Is there another handler I could be using? None of the others seem to allow for writing a document.
I have read this
https://lbl.io/post/url-shortening-with-couchdb
I was hoping to avoid creating a proxy, and I'm using a hosted service (smileupps) so no customizations.