Removing version from API calls.

This commit is contained in:
Dessalines 2022-05-15 15:55:24 -04:00
parent 28219623e7
commit 48dc74d4e1
2 changed files with 3 additions and 3 deletions

View file

@ -62,7 +62,7 @@ NoNewPrivileges=true
WantedBy=multi-user.target
```
If you did everything right, the Lemmy logs from `journalctl -u lemmy` should show "Starting http server at 127.0.0.1:8536". You can also run `curl localhost:8536/api/v3/site` which should give a successful response, looking like `{"site_view":null,"admins":[],"banned":[],"online":0,"version":"unknown version","my_user":null,"federated_instances":null}`.
If you did everything right, the Lemmy logs from `journalctl -u lemmy` should show "Starting http server at 127.0.0.1:8536". You can also run `curl localhost:8536/api/{version}/site` which should give a successful response, looking like `{"site_view":null,"admins":[],"banned":[],"online":0,"version":"unknown version","my_user":null,"federated_instances":null}`.
### Install lemmy-ui (web frontend)

View file

@ -19,7 +19,7 @@ This contains extras not in the [API docs](/api).
**GET example**
```
curl "http://localhost:8536/api/v2/community/list?sort=Hot"`
curl "http://localhost:8536/api/{version}/community/list?sort=Hot"`
```
**POST example**
@ -33,7 +33,7 @@ curl -i -H \
"score": 1,
"auth": eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpZCI6MiwiaXNzIjoidGVzdC5sZW1teS5tbCJ9.P77RX_kpz1a_geY5eCp29sl_5mAm-k27Cwnk8JcIZJk
}' \
http://localhost:8536/api/v2/comment/like
http://localhost:8536/api/{version}/comment/like
```
## HTTP API exclusive features