-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
33 lines (30 loc) · 1.29 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body style="text-align: center;">
<div>
<h1 style="align-items: center;">Social Media API ReadMe</h1>
<div style="padding: 20; margin: 10; background-color: ivory;">
<h2>Login User - <code>/api/auth/login</code></h2>
</div>
<div style="padding: 20; margin: 10; background-color: antiquewhite;">
<h2>Get User - <code>/api/users/:id</code></h2>
<h2>Follow User - <code>/api/users/follow/:id</code></h2>
<h2>Unfollow User - <code>/api/users/unfollow/:id<code></h2>
</div>
<div style="padding: 20; margin: 10; background-color: aliceblue;">
<h2>Create Post - <code>/api/posts/</code></h2>
<h2>Like Post - <code>/api/posts/like/:id</code></h2>
<h2>Dislike Post - <code>/api/posts/like/:id</code></h2>
<h2>Comment Post - <code>/api/posts/comment/:id</code></h2>
<h2>Get Post - <code>/api/posts/:id</code></h2>
<h2>Get all posts - <code>/api/posts/timeline/all</code></h2>
</div>
</div>
</body>
</html>