-
Notifications
You must be signed in to change notification settings - Fork 1
pog API
효택 edited this page Sep 6, 2021
·
10 revisions
해당 문서 및 API는 장효택이 작성했으며 궁금하신 부분있으면 언제든 연락주세요!
- [ 21.8.14 | votePOG body, header 수정 ] : 기존 헤더의 토큰 부재로, body에 user uid를 따로 입력 받아 사용했던 로직을, 토큰 사용을 통해 불필요해서 제거 했습니다.
- [ 21.8.18 | getPOGResult ] : cnt라는 용어를 count로 통일했습니다.
- [ 21.8.20 | http status code update ] : get 방식의 api 성공 리스폰스 status를 200으로 변경.
- [ 21.9.02 | getPOGResult ] : query를 통한 gameId 검색 추가(gameId 비우면 현재 게임으로 검색 가능).
- [ 21.9.07 | getPOGResult ] : 팀별 POG 순위 필드 추가.
http://3.37.194.249/pog
현재 경기에 대한 POG 투표 가능 선수의 목록을 확인하는 API
-
method
GET
-
url
/list
-
success
data의 리스트는 축약했습니다.
{ "success": true, "status": 200, "data": { "aTeam": { "name": "AF", "icon": "https://cdn.pandascore.co/images/team/image/120/afreeca_freecslogo_profile.png", "id": 9, "player": [ { "nickname": "Kiin", "role": "top", "image": "https://cdn.pandascore.co/images/player/image/3524/220px_af_kiin_2020_split_1.png", "gamePlayerId": 92 }, { "nickname": "Leo", "role": "adc", "image": "https://cdn.pandascore.co/images/player/image/14239/lsb_leo_2021_split_1.png", "gamePlayerId": 94 } ] }, "bTeam": { "name": "HLE", "icon": "https://cdn.pandascore.co/images/team/image/2883/hanwha-life-esports-1s04vbu0.png", "id": 7, "player": [ { "nickname": "Morgan", "role": "top", "image": "https://cdn.pandascore.co/images/player/image/21861/hle_morgan_2021_split_1.png", "gamePlayerId": 91 } ] } } }
aTeam과 bTeam은 중복된 내용이기에 생략했습니다.
-
Field Type Description success boolean 응답 성공 여부 status number Status Code data object 각 팀 data.aTeam.name string aTeam의 이름 data.aTeam.icon string aTeam의 icon url data.aTeam.id number aTeam의 table pk data.aTeam.player List aTeam 선수 출전 선수 목록 data.aTeam.player.nickname string 선수 이름 data.aTeam.player.role string 선수 라인 data.aTeam.player.image string 선수 image url data.aTeam.player.gamePlayerId number 투표할 때 필요한 선수 key 값
-
-
fail
{ "success": false, "status": 500, "msg": "internal Error" }
현재 경기에 대한 POG 투표 현황을 확인하는 API
-
method
GET
-
url
/result?gameId={gameId}
- 만약 gameId를 비운다면 현재 OnAir 경기의 POG Result가 나옵니다!
-
params
key type Description gameId int 해당 게임id
-
success
data의 리스트는 축약했습니다.
{ "success": true, "status": 200, "data": { "aTeam": { "name": "NS", "icon": "https://cdn.pandascore.co/images/team/image/128217/nongshim_red_forcelogo_square.png", "id": 3, "player": [ { "nickname": "Rich", "role": "top", "image": "https://cdn.pandascore.co/images/player/image/22948/ns_rich_2021_split_1.png", "gamePlayerId": 141, "count": 188, "rate": 22.48, "rateRank": 1 }, { "nickname": "Kellin", "role": "sup", "image": "https://cdn.pandascore.co/images/player/image/19302/ns_kellin_2021_split_1.png", "gamePlayerId": 145, "count": 159, "rate": 19.01, "rateRank": 2 } ] }, "bTeam": { "name": "GEN", "icon": "https://cdn.pandascore.co/images/team/image/2882/geng-hooir6i9.png", "id": 8, "player": [ { "nickname": "Clid", "role": "jun", "image": "https://cdn.pandascore.co/images/player/image/1736/220px_gen_clid_2020_split_1.png", "gamePlayerId": 137, "count": 123, "rate": 14.71, "rateRank": 1 }, { "nickname": "Life", "role": "sup", "image": "https://cdn.pandascore.co/images/player/image/15259/220px-GEN_Life_2019_Split_2.png", "gamePlayerId": 140, "count": 121, "rate": 14.47, "rateRank": 2 } ] } } }
aTeam과 bTeam은 중복된 내용이기에 생략했습니다.
-
Field Type Description success boolean 응답 성공 여부 status number Status Code data object 각 팀 data.aTeam.name string aTeam의 이름 data.aTeam.icon string aTeam의 icon url data.aTeam.id number aTeam의 table pk data.aTeam.player List aTeam 선수 출전 선수 목록 data.aTeam.player.nickname string 선수 이름 data.aTeam.player.role string 선수 라인 data.aTeam.player.image string 선수 image url data.aTeam.player.gamePlayerId number 투표할 때 필요한 선수 key 값 data.aTeam.player.count number 선수 투표수 data.aTeam.player.rate number 전체 선수가 100일 때, 선수의 count 백분율 data.aTeam.player.rateRank number 팀별 선수 POG 순위
-
-
fail
{ "success": false, "status": 500, "msg": "internal Error" }
POG 투표 API
-
method
POST
-
header
-
Field Type Description accesstoken string accesstoken refreshtoken string refreshtoken
-
-
url
/vote
-
body
{
"vote": [
{ "gamePlayerId": 92, "count": 11 },
{ "gamePlayerId": 94, "count": 14 },
{ "gamePlayerId": 96, "count": 11 }
]
}
-
Field Type Description vote list 각 선수 투표에 대한 리스트 vote[0].gamePlayerId number player에 투표에 해당하는 id vote[0].count number 사용자가 터치한 투표 수
-
success
data의 리스트는 축약했습니다.
{ "success": true, "status": 201, "data": "투표를 완료했습니다." }
aTeam과 bTeam은 중복된 내용이기에 생략했습니다.
-
Field Type Description success boolean 응답 성공 여부 status number Status Code data string 성공 메시지
-
-
fail
{ "success": false, "status": 500, "msg": "Internel Error" }