-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest.http
104 lines (82 loc) · 1.22 KB
/
test.http
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
# ---- ENVIRONMENTS ---- #
:http = http
:host = localhost:3000
:appkey = key
:raw = :http://:host
:api = :http://:host/api
:header = <<
apikey: :appkey
User-Agent: restclient/2.0
Content-Type: application/json
#GET PING
GET :raw/
:header
#GET PING
GET :api/
:header
# register
POST :api/rpc/register
:header
{
"name": "alice",
"email": "[email protected]",
"password": "pass2",
"cookie": false
}
#login
POST :api/rpc/login
:header
{
"email": "[email protected]",
"password": "pass"
}
#tokens
:token =
:refresh_token =
#header with token
:headerT = <<
:header
Authorization: Bearer :token
#logout
POST :api/rpc/logout
:headerT
{
"refresh_token": :refresh_token
}
#GET TODO
GET :api/todos
:headerT
#GET TODO
GET :api/sessions
:header
#GET TODO
POST :api/rpc/refresh_token
:header
{
"refresh_token": ":refresh_token"
}
#Logout
POST :api/rpc/logout
:headerT
{
"refresh_token": :refresh_token
}
#GET ME
GET :api/rpc/me
:headerT
#GET TODO
GET :api/todos?id=eq.1
:headerT
Accept: text/csv
#GET TODO - object - overriding header on server side to get 1 item only
GET :api/todos/1
:headerT
#GET TODO - array
GET :api/todos?id=eq.2
:headerT
#GET TODO
GET :api/todos?limit=1
:headerT
#GET TODO2
GET :api/todos
:headerT