プレイヤー照会
- 印刷する
- PDF
プレイヤー照会
- 印刷する
- PDF
記事の要約
この要約は役に立ちましたか?
ご意見ありがとうございます
プレイヤーの詳細情報を照会する方法は、以下のとおりです。
リクエスト
GET {API_URL}/players/{player_no}
リクエストパラメータ
フィールド名 | 要否 | タイプ | 制約事項 | 説明 |
---|---|---|---|---|
player_no | Y | Integer | Path Parameter | プレイヤー番号 |
レスポンス
フィールド名 | タイプ | 説明 |
---|---|---|
result | Object | |
result.no | Integer | プレイヤー番号 |
result.name | String | プレイヤー名 |
result.version | String | 選択したプレイヤー SDKバージョン |
result.auto_update | String | 自動アップデートの有無 |
result.access_key | String | プレイヤーアクセスキー |
result.updated_at | String | 修正日時 |
result.created_at | String | 作成日時 |
result.domains | Object | 登録されたドメイン情報 |
result.domains.ios | Object | 登録された iosアプリデータ |
result.domains.ios.no | Integer | ドメイン pk |
result.domains.ios.type | String | ドメインタイプ |
result.domains.ios.domain | String | aosパッケージ ID |
result.domains.ios.created_at | String | ドメイン登録日時 |
result.domains.aos | Object | 登録された aosアプリデータ |
result.domains.aos.no | Integer | ドメイン pk |
result.domains.aos.type | String | ドメインタイプ |
result.domains.aos.domain | String | aosパッケージ ID |
result.domains.aos.created_at | String | ドメイン登録日時 |
result.domains.web | Object | 登録されたドメインのうち web |
result.domains.web.no | Integer | ドメイン pk |
result.domains.web.type | String | ドメインタイプ |
result.domains.web.domain | String | URL |
result.domains.web.created_at | String | ドメイン登録日時 |
リクエスト例
GET /api/v1/player/1
HOST: vpe.apigw.ntruss.com
Content-Type: application/json
x-ncp-apigw-timestamp:1521787414578
x-ncp-iam-access-key:6uxz1nKkcYwUjWRG5Q1V7NsW0i5jErlu2NjBXXgy
x-ncp-apigw-signature-v2:iJFK773KH0WwQ79PasqJ+ZGixtpDQ/abS57WGQdld2M=
x-ncp-region_code:KR
成功コード
HttpStatusCode | Code | Message |
---|---|---|
200 | 200 | ok |
エラーコード
HttpStatusCode | Code | Message | Description |
---|---|---|---|
200 | 4601 | Query string player_no is missing. | |
200 | 4801 | No player information. |
レスポンス例
HTTP/1.1 200 OK
Date: Fri, 26 Feb 2021 09:53:32 GMT
Content-Type: application/json;charset=utf-8
Connection: keep-alive
Access-Control-Allow-Origin: *
x-ncp-trace-id: 36c9k60om4p3238cpmc9gm4cj4
{
"code": "200",
"message": ok,
"result": {
"name": "test",
"no": 1234,
"version" : "1.0.0",
"auto_update": "Y",
"domains": {
"aos": [
{
"no": 6965,
"type": "aos",
"domain": "com.test.com",
"created_at": "2023-04-13T01:34:13.000+00:00"
}
],
"ios": [
{
"no": 6964,
"type": "ios",
"domain": "com.test.com",
"created_at": "2023-04-13T01:34:13.000+00:00"
}
],
"web": [
{
"no": 6963,
"type": "web",
"domain": "http://test.com",
"created_at": "2023-04-13T01:34:13.000+00:00"
}
]
},
"access_key": "92f4a22e68",
"created_at": "2023-04-13T01:34:13.000+00:00",
"updated_at": "2023-04-19T03:19:06.000+00:00"
}
}
この記事は役に立ちましたか?