League of Legends games have many characters and items, which makes it difficult for beginners to get involved. You can find out which characters have a good winning percentage and how to buy items on the site called opgg.
Reference: Top How to buy items with a good winning percentage of Timo, the best 3 https://jp.op.gg/champion/teemo/statistics/top
This time, we will investigate how to buy items with a good winning percentage when high-ranked players use top Timo.
Introducing the API to be used for the first time.
--Get version list https://ddragon.leagueoflegends.com/api/versions.json -> The first element represents the latest version
--Get language list (mackerel?) https://ddragon.leagueoflegends.com/cdn/languages.json -> Confirm that ja_JP exists
--Get Queue ID http://static.developer.riotgames.com/docs/lol/queues.json -> Make sure queueID: 420 points to solo rank
--Obtaining a season ID http://static.developer.riotgames.com/docs/lol/seasons.json -> At the time of posting, id: 13 is the latest
--Item acquisition http://ddragon.leagueoflegends.com/cdn/11.1.1/data/ja_JP/item.json
--Champion acquisition http://ddragon.leagueoflegends.com/cdn/11.1.1/data/ja_JP/champion.json
--Get high-ranked player information Challenger, Grand Master, Master https://jp1.api.riotgames.com/lol/league/v4/challengerleagues/by-queue/RANKED_SOLO_5x5?api_key=[API_KEY] https://jp1.api.riotgames.com/lol/league/v4/grandmasterleagues/by-queue/RANKED_SOLO_5x5?api_key=[API_KEY] https://jp1.api.riotgames.com/lol/league/v4/masterleagues/by-queue/RANKED_SOLO_5x5?api_key=[API_KEY] -> Get Encrypted_summoner_id
--Account ID acquisition https://jp1.api.riotgames.com/lol/summoner/v4/summoners/[ENCRYPTED_SUMMONER_ID]?api_key=[APIKEY]
--Get match list https://jp1.api.riotgames.com/lol/summoner/v4/matchlists/by-account/[ACCOUNTID]?queue=420&season=13&api_key=[APIKEY]
--Getting an overview of each match https://jp1.api.riotgames.com/lol/match/v4/matches/[GAMEID]?api_key=[APIKEY]
--Get timeline for each match https://jp1.api.riotgames.com/lol/match/v4/timelines/by-match/[GAMEID]?api_key=[APIKEY]
reference Page about constants handled by League of Legends API
Application for use of League of Legends development API + documentation https://developer.riotgames.com/
Recommended Posts