aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorArthurHoaro <arthur@hoa.ro>2018-07-17 13:53:53 +0200
committerArthurHoaro <arthur@hoa.ro>2018-07-17 13:54:15 +0200
commit40f0ff2236a92e2f2fb1631d1ffe62c56d5425ed (patch)
treee6b3aeee033add17d3b29907deefa153397bd587
parent5d32c50ad70a659a6c86b80fa65d7ec41e045b1e (diff)
downloadShaarli-40f0ff2236a92e2f2fb1631d1ffe62c56d5425ed.tar.gz
Shaarli-40f0ff2236a92e2f2fb1631d1ffe62c56d5425ed.tar.zst
Shaarli-40f0ff2236a92e2f2fb1631d1ffe62c56d5425ed.zip
Documentation - REST API - Mention dev.debug mode
-rw-r--r--doc/md/REST-API.md19
1 files changed, 19 insertions, 0 deletions
diff --git a/doc/md/REST-API.md b/doc/md/REST-API.md
index c016de56..11bd1cd2 100644
--- a/doc/md/REST-API.md
+++ b/doc/md/REST-API.md
@@ -152,3 +152,22 @@ See the reference API client:
152 152
153- [Documentation](http://python-shaarli-client.readthedocs.io/en/latest/) on ReadTheDocs 153- [Documentation](http://python-shaarli-client.readthedocs.io/en/latest/) on ReadTheDocs
154- [python-shaarli-client](https://github.com/shaarli/python-shaarli-client) on Github 154- [python-shaarli-client](https://github.com/shaarli/python-shaarli-client) on Github
155
156## Troubleshooting
157
158### Debug mode
159
160> This should never be used in a production environment.
161
162For security reasons, authentication issues will always return an `HTTP 401` error code without any detail.
163
164It is possible to enable the debug mode in `config.json.php`
165to get the actual error message in the HTTP response body with:
166
167```json
168{
169 "dev": {
170 "debug": true
171 }
172}
173```