-
GET /debug/requests
request and response live debugger
-
GET /task/checkNewList
cleaning older posts from new list
-
GET /api/auth?apiKey=
get session for unauthorized user
{ id: string, userId: int }
- ERR_BAD_REQUEST
- ERR_API_INTERNAL_ERROR
- ERR_INVALID_KEY
-
POST /api/auth/fb?apiKey=
get session for authorized user by facebook
POST JSON: {id: string, name: string, fist_name: string, last_name: string, locale: string}
{ id: string, userId: int }
- ERR_BAD_REQUEST
- ERR_API_INTERNAL_ERROR
- ERR_INVALID_KEY
- ERR_LOGIN_FAILED
-
POST /api/auth/google?apiKey=
get session for authorized user by google
POST JSON: {id: string, name: string, given_name: string, family_name: string}
{ id: string, userId: int }
- ERR_BAD_REQUEST
- ERR_API_INTERNAL_ERROR
- ERR_INVALID_KEY
- ERR_LOGIN_FAILED
-
POST /api/auth/twitter?apiKey=
get session for authorized user by twitter
POST JSON: {id: string, name: string}
{ id: string, userId: int }
- ERR_BAD_REQUEST
- ERR_API_INTERNAL_ERROR
- ERR_INVALID_KEY
- ERR_LOGIN_FAILED
-
POST /api/auth/live?apiKey=
get session for authorized user by windows live
POST JSON: {id: string, name: string, fist_name: string, last_name: string, locale: string}
{ id: string, userId: int }
- ERR_BAD_REQUEST
- ERR_API_INTERNAL_ERROR
- ERR_INVALID_KEY
- ERR_LOGIN_FAILED
-
POST /api/keys
generate valid key (temp)
{ key: string }
-
GET /api/tap4video/posts/:postId
get posted link data by postId
{ postId: int, added: int, userId: int, userName: string, videoInfo: { url: string, title: string, description: string, thumbUrl: string, explicit: boolean }, rate: int, views: int, tags: [ tagName: string ] }
- ERR_BAD_REQUEST
- ERR_API_INTERNAL_ERROR
- ERR_INVALID_KEY
- ERR_INVALID_SESSION
-
POST /api/tap4video/posts
create post link
POST JSON: {url: string, tags: [tagName: string]}
{ postId: int, added: int, userId: int, userName: string, videoInfo: { url: string, title: string, description: string, thumbUrl: string, explicit: boolean }, rate: int, views: int, tags: [ tagName: string ] }
- ERR_BAD_REQUEST
- ERR_API_INTERNAL_ERROR
- ERR_INVALID_KEY
- ERR_INVALID_SESSION
- ERR_INVALID_TAG_NAME
- ERR_UNAUTHORIZED
-
POST /api/tap4video/posts/:postId/views
increse post link views count
POST JSON: {}
{ postId: int, views: int }
- ERR_BAD_REQUEST
- ERR_API_INTERNAL_ERROR
- ERR_INVALID_KEY
- ERR_INVALID_SESSION
-
POST /api/tap4video/posts/:postId/rate
rate post link (rate [-1, 1])
POST JSON: {rate: int}
{ postId: int, rate: int }
- ERR_BAD_REQUEST
- ERR_API_INTERNAL_ERROR
- ERR_INVALID_KEY
- ERR_INVALID_SESSION
- ERR_UNAUTHORIZED
- ERR_ALREADY_RATED
-
GET /api/tap4video/tags
get tags (searchKey tag is optional, max limit value: 100)
{ count: int, pages: int, currentPage: int, isNextPage: bool, isPrevPage: bool, result: [ tagName:string ] }
- ERR_BAD_REQUEST
- ERR_API_INTERNAL_ERROR
- ERR_INVALID_KEY
-
GET /api/users/:userId
get given user profile (userId is optional)
{ userId: int, name: string, fistName: string, lastName: string, accountType: string, topPosts: [ ] }
- ERR_BAD_REQUEST
- ERR_API_INTERNAL_ERROR
- ERR_INVALID_KEY
- ERR_INVALID_SESSION
- ERR_UNAUTHORIZED
- ERR_INVALID_USER_ID
{
error: string,
data: string,
code: int,
msg: string
}
error value code value
* ERR_BAD_REQUEST 400
* ERR_UNAUTHORIZED 401
* ERR_NOT_ALLOWED 403
* ERR_NOT_FOUND 404
* ERR_METHOD_NOT_ALLOWED 405
* ERR_API_INTERNAL_ERROR 50x
* ERR_EMPTY_RESULTS 601
* ERR_INVALID_KEY 602
* ERR_INVALID_SESSION 603
* ERR_ALREADY_RATED 604
* ERR_LOGIN_FAILED 605
* ERR_INVALID_TAG_NAME 606
* ERR_INVALID_USER_ID 607