유저
글
그룹
댓글
기능
http://lemontree.dothome.co.kr/pinbox/user/user_create
param | desc |
---|---|
user_name | 이름 |
user_id | 아이디 |
user_pw | 비밀번호 |
user_email | 이메일 |
user_sex | 성별 (0 : 남자, 1 : 여자) |
user_age | 나이 |
user_phone | 전화번호 |
user_profile | 프로필 이미지 |
return | desc |
---|---|
SUCCESS | 성공 |
FAIL | 실패 |
PHONE_FAIL | 이미 핸드폰 계정 있음 |
EMAIL_FAIL | 이미 이메일 계정 있음 |
ID_FAIL | 이미 아이디 계정 있음 |
http://lemontree.dothome.co.kr/pinbox/user/user_login
param | desc |
---|---|
user_id | 유저 아이디 |
user_pw | 유저 비밀번호 |
return | desc |
---|---|
SUCCESS | 성공 |
FAIL | 실패 |
http://lemontree.dothome.co.kr/pinbox/user/user_info
param | desc |
---|---|
user_id | 유저 아이디 |
return | desc |
---|---|
json(LA_USER) | LA_USER 테이블 확인 |
FAIL | 실패 |
http://lemontree.dothome.co.kr/pinbox/user/user_follow
param | desc |
---|---|
user_token | 유저 |
target_token | 팔로우 할 타겟 |
return | desc |
---|---|
SUCCESS | 성공 |
FAIL | 실패 |
http://lemontree.dothome.co.kr/pinbox/user/user_is_following
param | desc |
---|---|
user_token | 유저 |
target_token | 팔로우 할 타겟 |
return | desc |
---|---|
ALREADY_FOLLOW | 팔로우 중임 |
UN_FOLLOW | 팔로우 중 아님 |
FAIL | 실패 |
http://lemontree.dothome.co.kr/pinbox/user/user_unfollow
param | desc |
---|---|
user_id | 유저 아이디 |
user_pw | 유저 비밀번호 |
return | desc |
---|---|
SUCCESS | 성공 |
FAIL | 실패 |
ALREADY_UNFOLLOW | 이미 언 팔로우 중임 |
http://lemontree.dothome.co.kr/pinbox/user/user_remove
param | desc |
---|---|
user_id | 유저 아이디 |
user_pw | 유저 비밀번호 |
user_phone | 유저 전화번호 |
user_email | 유저 이메일 |
return | desc |
---|---|
SUCCESS | 성공 |
FAIL | 실패 |
WRONG_ID | 아이디 또는 비밀번호가 틀림 |
※ 본 기능을 사용하기 전에 #room_unjoin 을 먼저 호출하고 SUCCESS 받아올 것
http://lemontree.dothome.co.kr/pinbox/bbs/bbs_write
param | desc |
---|---|
room_token | 방 토큰 |
content | 내용 |
writer | 글쓴이 토큰 |
return | desc |
---|---|
SUCCESS | 성공 |
FAIL | 실패 |
http://lemontree.dothome.co.kr/pinbox/bbs/bbs_bring
param | desc |
---|---|
room_token | 방 토큰 |
bbs_idx | 게시글 번호 |
return | desc |
---|---|
json(글정보) | PB_BBS 테이블 |
FAIL | 실패 |
NOT_FOUND | 글 못찾음 |
http://lemontree.dothome.co.kr/pinbox/bbs/bbs_remove
param | desc |
---|---|
room_token | 방 토큰 |
bbs_idx | 게시글 번호 |
user_token | 글삭제 요청한 사람의 토큰 |
return | desc |
---|---|
SUCCESS | 성공 |
FAIL | 실패 |
NO_ACCESS | 권한 없는 유저 |
http://lemontree.dothome.co.kr/pinbox/bbs/bbs_rewrite
param | desc |
---|---|
bbs_idx | 게시글 번호 |
content | 내용 |
user_token | 글삭제 요청한 사람의 토큰 |
return | desc |
---|---|
SUCCESS | 성공 |
FAIL | 실패 |
http://lemontree.dothome.co.kr/pinbox/room/room_create
param | desc |
---|---|
room_name | 방 이름 |
room_manager | 유저 토큰 |
room_min_age | 최소 연령 설정 |
room_max_age | 최대 연령 설정 |
room_profile | 방 프로필 이미지 |
room_memlimit | 방 인원수 제한 |
room_private | 방 공개 여부 (기본 : false : 공개) |
room_tag_0 ~ 4 | 방 태그들 |
return | desc |
---|---|
SUCCESS | 성공 |
FAIL | 실패 |
http://lemontree.dothome.co.kr/pinbox/room/room_remove
param | desc |
---|---|
user_token | 유저 토큰 |
room_token | 방 토큰 |
return | desc |
---|---|
SUCCESS | 성공 |
FAIL | 실패 |
CANT_REMOVE | 없는 방 토큰이거나 매니저가 아님 |
http://lemontree.dothome.co.kr/pinbox/room/room_info
param | desc |
---|---|
room_token | 방 토큰 |
return | desc |
---|---|
json(PB_ROOM) | PB_ROOM 테이블 확인 |
FAIL | 실패 |
http://lemontree.dothome.co.kr/pinbox/room/room_user_rank
param | desc |
---|---|
user_token | 유저 토큰 |
room_token | 방 토큰 |
target_token | 대상 토큰 |
rank | 등급 |
return | desc |
---|---|
SUCCESS | PB_ROOM 테이블 확인 |
FAIL | 실패 |
RANK_FAIL | 본인보다 높은 등급에 있음 |
http://lemontree.dothome.co.kr/pinbox/room/room_join
param | desc |
---|---|
user_token | 유저 토큰 |
room_token | 방 토큰 |
return | desc |
---|---|
SUCCESS | 성공 |
FAIL | 실패 |
MEM_LIMIT | 인원 초과 |
NOT_FOUND_ROOM | 없는 방 |
http://lemontree.dothome.co.kr/pinbox/room/room_unjoin
param | desc |
---|---|
user_token | 유저 토큰 |
room_token | 방 토큰 |
return | desc |
---|---|
SUCCESS | 성공 |
FAIL | 실패 |
NOT_FOUND_ROOM | 없는 방 |
http://lemontree.dothome.co.kr/pinbox/room/room_rewrite
param | desc |
---|---|
room_token | 방 토큰 |
room_name | 방 이름 |
room_min_age | 최소 연령 설정 |
room_max_age | 최대 연령 설정 |
room_profile | 방 프로필 이미지 |
room_memlimit | 방 인원수 제한 |
room_private | 방 공개 여부 (기본 : false : 공개) |
room_tag_0 ~ 4 | 방 태그들 |
room_greeting | 방 소개 인사 |
return | desc |
---|---|
SUCCESS | 성공 |
FAIL | 실패 |
http://lemontree.dothome.co.kr/pinbox/comment/comment_write
param | desc |
---|---|
bbs_idx | 글 idx |
content | 내용 |
writer | 작성한 유저 토큰 |
return | desc |
---|---|
SUCCESS | 성공 |
FAIL | 실패 |
http://lemontree.dothome.co.kr/pinbox/comment/comment_bring
param | desc |
---|---|
bbs_idx | 글 idx |
return | desc |
---|---|
json(PB_COMMENT) | PB_COMMENT 테이블 확인 |
FAIL | 실패 |
NOT_FOUND | 댓글 없음 |
http://lemontree.dothome.co.kr/pinbox/comment/comment_remove
param | desc |
---|---|
comment_idx | 댓글 idx |
user_token | 글삭제 요청한 사람의 토큰 |
return | desc |
---|---|
SUCCESS | 성공 |
FAIL | 실패 |
NO_ACCESS | 권한 없는 유저 |
http://lemontree.dothome.co.kr/pinbox/comment/comment_rewrite
param | desc |
---|---|
bbs_idx | 글 idx |
content | 내용 |
writer | 작성한 유저 토큰 |
return | desc |
---|---|
SUCCESS | 성공 |
FAIL | 실패 |
http://lemontree.dothome.co.kr/pinbox/edition/timeline
param | desc |
---|---|
user_id | 유저 아이디 |
bbs_idx | 글 idx |
return | desc |
---|---|
json(PB_BBS) | PB_BBS 테이블 확인 |
FAIL | 실패 |