mirror of
https://github.com/Akif9748/akf-forum.git
synced 2024-11-17 01:15:05 +03:00
57 lines
1.2 KiB
Markdown
57 lines
1.2 KiB
Markdown
# API documentation of Akf-forum
|
|
<img src="https://raw.githubusercontent.com/Akif9748/akf-forum/main/public/images/logo.jpg" align="right" width="300px" />
|
|
|
|
Akf-forum has got an API for other clients etc.
|
|
|
|
You can find examples in `/tests` folder.
|
|
|
|
## Authorization
|
|
You need this headers for send request to API:
|
|
```json
|
|
{
|
|
"username": "testUser",
|
|
"password": "testPassword"
|
|
}
|
|
```
|
|
|
|
## How to request?
|
|
|
|
### Request types:
|
|
- GET `/api/users/:id`
|
|
- POST `/api/threads`
|
|
- GET `/api/threads/:id`
|
|
- POST `/api/threads/:id/delete`
|
|
- GET `/api/messages/:id`
|
|
- POST `/api/messages`
|
|
- POST `/api/messages/:id/delete`
|
|
- POST `/api/messages/:id/react/:type`
|
|
|
|
### Example request:
|
|
```GET /api/message/1```
|
|
|
|
#### Example API Output:
|
|
```json
|
|
{
|
|
"status": 200,
|
|
"result":
|
|
{
|
|
"content": "First message",
|
|
"time": 1647178873587,
|
|
"deleted": false,
|
|
"edited": false,
|
|
"react": {},
|
|
"id": "1",
|
|
"author": {
|
|
"name": "ForumcuCocuk",
|
|
"avatar": "/images/guest.png",
|
|
"time": 1647177723873,
|
|
"admin": true,
|
|
"id": "1"
|
|
},
|
|
"threadID":"0"
|
|
}
|
|
}
|
|
|
|
```
|
|
|
|
|