You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Example #5 of the README demonstrates a simple RESTful API, but a useful API is not really achievable since any POST data is discarded by ngx_postgres_handler, so no records can be added or changed unless the data can be calculated within Nginx or PostgreSQL.
The text was updated successfully, but these errors were encountered:
You are correct, but this is by design. POST data should be extracted by ngx_form_input, ngx_lua or similiar module before it reaches ngx_postgres_handler, because by that time it's useless anyway.
Example #5 of the README demonstrates a simple RESTful API, but a useful API is not really achievable since any POST data is discarded by ngx_postgres_handler, so no records can be added or changed unless the data can be calculated within Nginx or PostgreSQL.
The text was updated successfully, but these errors were encountered: