This guide will show you how to properly use Arsenal Online API to access the game informations and data.
Обзор
The Arsenal API lets developers get game data. You can use this data to make stat trackers, Discord bots, or your own special GUI interface.
It’s a good idea to know a bit about HTTP because the API uses GET requests.
Чтобы узнать больше, посетить official API page.
Настраивать
Для начала, get the current API URL. It might change, so grab it from the TXT file above.
Once you have the URL, you can use it to get data with a GET request. The format should look like this:
<URL>/api/<Query>
You send parameters as query strings, and you’ll get results in the form of JSON objects.
Queries
Here you can find all available queries.
Retrieves the top 10 players for a game mode.
getTopScores(gameModeId)
Retrieves the top 10 players by total kills.
getTopPlayers()
Retrieves player data by username.
getPlayerData(имя пользователя)
Retrieves currently online players.
getOnlinePlayers()
Retrieves weapon data by id.
getWeaponData(weaponId)
Retrieves mod data by id.
getModData(modId)
Example Usage
- Get the player data for username xwilkinx
- Get the top 10 игроки
- Get the top 10 scores for Time Attack
Это все, чем мы делимся сегодня для этого. Арсенал онлайн гид. Это руководство было первоначально создано и написано Wilkin. На случай, если нам не удастся обновить это руководство, вы можете найти последнее обновление, следуя этому связь.