はじめに
プログラミングが全然理解できていない、ど素人が書いたコードです。
一応、意図通りに動いているので公開しますが不具合等ありましたら、すみません。
こんな人に最適
自分の統計を確認したいだけなら、大手トラッカーサイトへ訪れればいいのですが、今回紹介するものはAPIを利用して取得したデータを自分のサイトへ載せたり、そのデータを加工して違う情報として扱うことができます。
最終的には今日のキル数やダメージ数をリアルタイムで表示し、OBSなどの配信ツールでオーバーレイとして使用することを目的にしています。
事前準備
Apex Legends の公式ではAPIを提供していないので、大手トラッカーサイトである「Tracker Network」が提供しているAPIを利用します。
まずはこちらにてアカウントの作成と情報が取得できるよう、レジェンドの登録やゲーム内にてトラッカーの設定を済ませておいてください。
API Key の取得
「Tracker Network」 にログインした状態でこちらからアプリを作成してください。
https://tracker.gg/developers/docs/getting-started
Create an app をクリックし、適当でいいので(API Keyがほしいだけなので)必要な項目を埋めてください。

必須項目を書いたら、規約を理解した上で右下のCreate appをクリックしてアプリを作成します。
同じような画面に戻ると思いますが、API Key が表示されているはずです。
大切に保管してください。
※1か月に500万リクエストを越してしまうと API Key がブロックされてしまいますのでご注意ください。
PHPでユーザー情報の取得
今回は他の人も利用できるトラッカーサイトではなく、自分だけの専用トラッカーサイトを作るので、このようにユーザーを指定したコードになります。
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
//API Key $header = array( "TRN-Api-Key:入手したAPI Key" ); //user情報取得 $ch = curl_init(); curl_setopt($ch,CURLOPT_URL,"https://public-api.tracker.gg/v2/apex/standard/profile/プラットフォーム/ユーザー名"); curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); curl_setopt($ch, CURLOPT_HTTPHEADER, $header); $response = curl_exec($ch); $profile = json_decode($response, true); curl_close($ch); |
CURLOPT_URL でユーザーを指定しています。
私の場合だと、obor0という名前で、PCにて遊んでいるので
https://public-api.tracker.gg/v2/apex/standard/profile/origin/obor0
このようになります。
プラットフォームには以下の3つがあります。
- origin (PC)
- xbl (xbox)
- psn (PS4)
これだけで、ユーザー情報が取得できます。
ほしい情報の選択
取得できたデータは、全体的なものから各レジェンド別にかなりの量になります。
その中から自分がほしい情報だけを指定し、抜き出して利用するにはもう少しだけコードが必要になります。
例として、私の全データはこんな感じです。
(レジェンド情報は1つだけにトリミングしてあります。)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 |
{ "data": { "platformInfo": { "platformSlug": "origin", "platformUserId": "obor0", "platformUserHandle": "obor0", "platformUserIdentifier": "obor0", "avatarUrl": "https://secure.download.dm.origin.com/production/avatar/prod/userAvatar/32100525/208x208.PNG", "additionalParameters": null }, "userInfo": { "isPremium": false, "isVerified": false, "isInfluencer": false, "countryCode": "JP", "customAvatarUrl": null, "socialAccounts": [] }, "metadata": { "currentSeason": 2, "activeLegend": "legend_8", "activeLegendName": "Pathfinder" }, "segments": [ { "type": "overview", "attributes": {}, "metadata": { "name": "Lifetime" }, "stats": { "level": { "rank": null, "percentile": 96, "displayName": "Level", "displayCategory": "Combat", "category": null, "metadata": {}, "value": 337, "displayValue": "337", "displayType": "Unspecified" }, "kills": { "rank": 19267, "percentile": 98.9, "displayName": "Kills", "displayCategory": "Combat", "category": null, "metadata": {}, "value": 7574, "displayValue": "7,574", "displayType": "Unspecified" }, "damage": { "rank": 8502, "percentile": 99.5, "displayName": "Damage", "displayCategory": "Combat", "category": null, "metadata": {}, "value": 2145924, "displayValue": "2,145,924", "displayType": "Unspecified" }, "headshots": { "rank": 26992, "percentile": 98.9, "displayName": "Headshots", "displayCategory": "Combat", "category": null, "metadata": {}, "value": 3471, "displayValue": "3,471", "displayType": "Unspecified" }, "finishers": { "rank": null, "percentile": 98.9, "displayName": "Finishers", "displayCategory": "Game", "category": null, "metadata": {}, "value": 20, "displayValue": "20", "displayType": "Unspecified" }, "pistolKills": { "rank": null, "percentile": 98.4, "displayName": "Pistol Kills", "displayCategory": "Weapons", "category": null, "metadata": {}, "value": 6, "displayValue": "6", "displayType": "Unspecified" }, "sniperKills": { "rank": null, "percentile": null, "displayName": "Sniper Kills", "displayCategory": "Weapons", "category": null, "metadata": {}, "value": 0, "displayValue": "0", "displayType": "Unspecified" }, "seasonWins": { "rank": 9391, "percentile": 99.4, "displayName": "Season 1 Wins", "displayCategory": "Game", "category": null, "metadata": {}, "value": 154, "displayValue": "154", "displayType": "Unspecified" }, "seasonDamage": { "rank": 14448, "percentile": 99.2, "displayName": "Season 1 Damage", "displayCategory": "Game", "category": null, "metadata": {}, "value": 496429, "displayValue": "496,429", "displayType": "Unspecified" }, "seasonKills": { "rank": 17661, "percentile": 99, "displayName": "Season 1 Kills", "displayCategory": "Game", "category": null, "metadata": {}, "value": 1412, "displayValue": "1,412", "displayType": "Unspecified" }, "season2Wins": { "rank": 1120, "percentile": 99.9, "displayName": "Season 2 Wins", "displayCategory": "Game", "category": null, "metadata": {}, "value": 298, "displayValue": "298", "displayType": "Unspecified" }, "rankScore": { "rank": null, "percentile": 75, "displayName": "Rank Score", "displayCategory": "Game", "category": null, "metadata": { "iconUrl": "https://trackercdn.com/cdn/apex.tracker.gg/ranks/silver4.png", "rankName": "Silver 4" }, "value": 1588, "displayValue": "1,588", "displayType": "Unspecified" }, "season3Wins": { "rank": 4800, "percentile": 99.6, "displayName": "Season 3 Wins", "displayCategory": "Game", "category": null, "metadata": {}, "value": 172, "displayValue": "172", "displayType": "Unspecified" }, "season4Wins": { "rank": 4518, "percentile": 99.7, "displayName": "Season 4 Wins", "displayCategory": "Game", "category": null, "metadata": {}, "value": 84, "displayValue": "84", "displayType": "Unspecified" } } }, { "type": "legend", "attributes": { "id": "legend_8" }, "metadata": { "name": "Pathfinder", "imageUrl": "https://trackercdn.com/cdn/apex.tracker.gg/legends/pathfinder-tile.png", "tallImageUrl": "https://trackercdn.com/cdn/apex.tracker.gg/legends/pathfinder-tall.png", "bgImageUrl": "https://trackercdn.com/cdn/apex.tracker.gg/legends/pathfinder-concept-bg-small.jpg", "isActive": true }, "stats": { "kills": { "rank": 2397, "percentile": 99.5, "displayName": "Kills", "displayCategory": "Combat", "category": null, "metadata": {}, "value": 6522, "displayValue": "6,522", "displayType": "Unspecified" }, "damage": { "rank": 848, "percentile": 99.8, "displayName": "Damage", "displayCategory": "Combat", "category": null, "metadata": {}, "value": 2145924, "displayValue": "2,145,924", "displayType": "Unspecified" }, "headshots": { "rank": 4367, "percentile": 99.3, "displayName": "Headshots", "displayCategory": "Combat", "category": null, "metadata": {}, "value": 3441, "displayValue": "3,441", "displayType": "Unspecified" }, "ziplineTimesUsedBySquad": { "rank": 51, "percentile": 99.9, "displayName": "Zipline: Times used by Squad", "displayCategory": "Game", "category": null, "metadata": {}, "value": 4582, "displayValue": "4,582", "displayType": "Unspecified" }, "seasonWins": { "rank": 1507, "percentile": 99.6, "displayName": "Season 1 Wins", "displayCategory": "Game", "category": null, "metadata": {}, "value": 154, "displayValue": "154", "displayType": "Unspecified" }, "seasonDamage": { "rank": 2633, "percentile": 99.4, "displayName": "Season 1 Damage", "displayCategory": "Game", "category": null, "metadata": {}, "value": 467338, "displayValue": "467,338", "displayType": "Unspecified" }, "seasonKills": { "rank": 3543, "percentile": 99.2, "displayName": "Season 1 Kills", "displayCategory": "Game", "category": null, "metadata": {}, "value": 1339, "displayValue": "1,339", "displayType": "Unspecified" }, "season2Wins": { "rank": 214, "percentile": 99.9, "displayName": "Season 2 Wins", "displayCategory": "Game", "category": null, "metadata": {}, "value": 291, "displayValue": "291", "displayType": "Unspecified" }, "season3Wins": { "rank": 720, "percentile": 99.8, "displayName": "Season 3 Wins", "displayCategory": "Game", "category": null, "metadata": {}, "value": 169, "displayValue": "169", "displayType": "Unspecified" }, "season4Wins": { "rank": 678, "percentile": 99.8, "displayName": "Season 4 Wins", "displayCategory": "Game", "category": null, "metadata": {}, "value": 81, "displayValue": "81", "displayType": "Unspecified" } } }, ], "availableSegments": [ { "type": "legend", "attributes": {} } ], } } |
試しにこの中からトータルキル数を抜き出してみます。
キル数の7574はこのような入れ子になっています。
data > segments[0] > stats > kills > value
( segments[0] は data の中にたくさんある最初の segments という意味になります。)
コードにするとこのようになります。
1 |
$tk = ($profile['data']['segments'][0]['stats']['kills']['value']); |
頭のtkの部分は自分でわかりやすい名前に変更しても大丈夫です。
最後の値の部分はカンマ付きの displayValue も選べますが、今回はその値を再利用するので value を使用しています。
コードをまとめる
他に今回ほしい情報として、トータルダメージ数とシーズン4のトータル勝利数を指定し、ここまでのコードをまとめるとこのようになります。
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 |
<?php //API Key $header = array( "TRN-Api-Key:入手したAPI Key" ); //user情報取得 $ch = curl_init(); curl_setopt($ch,CURLOPT_URL,"https://public-api.tracker.gg/v2/apex/standard/profile/プラットフォーム/ユーザー名"); curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); curl_setopt($ch, CURLOPT_HTTPHEADER, $header); $response = curl_exec($ch); $profile = json_decode($response, true); $tk = ($profile['data']['segments'][0]['stats']['kills']['value']); $td = ($profile["data"]["segments"][0]["stats"]["damage"]["value"]); $ts4w = ($profile["data"]["segments"][0]["stats"]["season4Wins"]["value"]); curl_close($ch); ?> |
サイトなどへ表示する分には、ここで完成となります。
echo number_format($tk);
などで組み込んでください。
この記事ではここまで