From 5e6b8aef7eccffd7e9177e083a1234e9bb0eebf7 Mon Sep 17 00:00:00 2001 From: Eric Parsons <parsons.eric@gmail.com> Date: Sun, 18 Feb 2018 23:34:51 -0800 Subject: [PATCH] Minor readme refinements --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 86bcc66..5f68a24 100644 --- a/README.md +++ b/README.md @@ -48,7 +48,7 @@ The root path of the API will be: https://\<hostname\>\<forum path\>/app.php/re NOTE: Due to PhpBB's cookie based auth, you will need to handle cookies passed to and returned by the api. You shouldn't directly store these. Your client should act as a proxy for these cookies. I recommend looking at the example client and reusing the code if you are working with PHP on the client side. -#### Logging in +### Logging in **Request** @@ -60,7 +60,7 @@ Parameters | Current cookies and the following form parameters in the POST body: **Response** -401 status code on auth failure, otherwise user data json for logged in user. (See current user API) +401 status code on auth failure, otherwise user data json for logged in user. (See [current user API](#current-user)) ### Logging out @@ -74,7 +74,7 @@ parameters | Current cookies **Response** -User data json for anonymous user. (See current user API) +User data json for anonymous user. (See [current user API](#current-user)) ### Current user -- GitLab