-
Notifications
You must be signed in to change notification settings - Fork 3
/
apiary.apib
39 lines (32 loc) · 895 Bytes
/
apiary.apib
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
HOST: https://victorique-demo.appspot.com/api/
--- Victorique ---
---
[Victorique](https://github.com/kelp404/Victorique) is an error report server on Google App Engine.
You could download this project and then deploy to GAE with free plan.
Your app could send error information to Victorique with RESTful API.
---
--
Logs
--
#Send the log data to server (JSONP).
GET /applications/{application_key}/logs
{
"title": "log title", // required
// others arguments are optional
"user": "name<name@gmail.com>",
"document": "{\"description\": \"note\"}" // json
}
< 200
#Send the log data to server.
POST /applications/{application_key}/logs
> Content-Type: application/json
{
"title": "log title", // required
// others arguments are optional
"user": "name<name@gmail.com>",
"document": {
"description": "note",
"...": "..."
}
}
< 200