# 클라이언트 2.0 다운로드 경로 조회 API
# 소개
런처의 다운로드 경로를 전달합니다.
game_no가 없을 경우 기본공통 런처가 전달됩니다
os_version이 존재할 경우 해당하는 os 버전에 대한 런처가 전달됩니다.
참고사항
런처 3.0 다운로드 경로는 아래 환경별 아래 경로로 고정값입니다.
- Sandbox 환경 : https://sgs-gate8-dl.game.playstove.com/game/lcs/STOVESetup.exe
- Live 환경 : https://sgs-live-dl.game.playstove.com/game/lcs/STOVESetup.exe
# 기본정보
GET /game/v1.0/stove/client/download
Host:
https://api.gate8.com (SANDBOX)
https://api.onstove.com (Live)
Content-Type: application/x-www-form-urlencoded
1
2
3
4
5
2
3
4
5
# Request
# Parameter
Name | Type | Required | Default Value | Example | Description |
---|---|---|---|---|---|
game_no | Long | Y | 2 | 게임 번호 (game_no 와 os_version 중 하나의 값은 필수입니다) | |
os_version | String | N | WIN_7, WIN_XP | OS 버전 |
# Response
# Body
Name | Type | Required | Default Value | Example | Description |
---|---|---|---|---|---|
result | Number | Y | - | 000 | 응답 코드 |
message | String | Y | - | OK | 응답 메시지 |
value | String | N | - | 런처 다운로드 경로 |
# Sample
# Request
curl --location --request GET 'https://api.onstove.com/game/v1.0/stove/client/download?game_no=2' \
--header 'Content-Type: application/x-www-form-urlencoded' \
1
2
2
# Response
{
"result": "000",
"message": "OK",
"value": "https://dl.onstove.com/game/lcs/STOVESetup_LIVE_ver755.exe"
}
1
2
3
4
5
2
3
4
5
# Return Code
HTTP Status code | response_code | response_message | Description |
---|---|---|---|
200 | 0 | 성공했습니다. | 성공 |
200 | 501 | 데이터를 찾을 수 없습니다 | 해당 game_no에 클라이언트 경로가 없을 경우 발생합니다. |