이용 정지 등록
개발사 운영 정책에 따라 Hive 서버에서 계정을 이용 정지 상태로 만드는 기능을 제공합니다. Hive 콘솔에서 이용 정지 유형을 사전에 등록하면, 영구 이용 정지 사용자와 기간 제한이 있는 이용 정지 사용자를 구분해 등록할 수 있습니다. 또 기존에 등록한 사용자(PlayerID로 구분) 이용 정지 유형과 이용 정지 기간을 변경할 수 있습니다.
Basics
Request URL |
|
---|---|
Method | POST |
HTTP Header |
|
Response Format | JSON |
Request
Parameter | Type | Required | Description |
---|---|---|---|
appid | String | O | 앱 아이디 |
player_id | Integer | O | 플레이어 아이디 |
hive_certification_key | String | O | Hive 인증키(앱센터에서 발급) |
status | String | O | 이용 정지 상태
|
block_type | Integer | O | 이용 정지 유형 (Hive 콘솔에 반드시 등록해야 함: Hive 콘솔 > 인증 > 이용 정지 > 유형 등록) |
start_date | String | O | 이용 정지 시작일 |
end_date | String | O | 이용 정지 종료일 |
Response
Parameter | Type | Description |
---|---|---|
result_code | Integer | 결과 코드
|
result_msg | String | 이용 제한 사유 결과 메시지 |
Request Examples
1 2 3 4 5 6 |
curl -X POST https://auth.qpyou.cn/game/block/set -H 'Content-Type: application/json' -H 'ISCRYPT: 0' -d '{"appid" : "com.com2us.hivesdk.normal.freefull.apple.global.ios.universal", "player_id" : 24000000000, "hive_certification_key" : "eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpc3MiOiJIaXZlIiwiaWF0IjoxNjAyMDU2NzI2LCJqdGkiOiIxODczMTExMzIwIn0.3soFiHTPlObCoqR5xX9ZeOQTSvnHrHDHWmopP3QfWtY", "status" : "B", "block_type" : 18, "start_date" : "2024-06-03 00:00:00", "end_date" : "2024-06-30 23:59:59"}' |
Response Example
1 2 3 4 5 6 |
{ "result_code": 0, "result_msg": "SUCCESS" } |
이용 정지 해제
특정 계정이 이용 정지된 상태를 Hive 서버에서 직접 해제합니다.
Basics
Request URL |
|
---|---|
Method | POST |
HTTP Header |
|
Response Format | JSON |
Request
필드 | 타입 | 필수 여부 | 설명 |
---|---|---|---|
appid | String | O | 앱 아이디 |
player_id | Integer | O | 플레이어 아이디 |
hive_certification_key | String | O | Hive 인증키(앱센터에서 발급) |
Response
필드 | 타입 | 설명 |
---|---|---|
result_code | Integer |
|
result_msg | String | 결과 메시지 |
Request Examples
1 2 3 4 5 6 |
curl -X POST https://auth.qpyou.cn/game/block/delete \ -H 'Content-Type: application/json' \ -H 'ISCRYPT: 0' \ -d '{"appid" : "com.com2us.hivesdk.normal.freefull.apple.global.ios.universal", "player_id" : 24000000000, "hive_certification_key" : "eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpc3MiOiJIaXZlIiwiaWF0IjoxNjAyMDU2NzI2LCJqdGkiOiIxODczMTExMzIwIn0.3soFiHTPlObCoqR5xX9ZeOQTSvnHrHDHWmopP3QfWtY"}' |
Response Examples
1 2 3 4 5 6 |
{ "result_code": 0, "result_msg": "SUCCESS" } |