일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- greedy
- 코딩테스트
- 장고
- sort
- java
- 탐욕알고리즘
- python
- 프로그래머스
- API
- lol
- 내일배움캠프
- 라이엇
- 리그오브레전드
- Riot
- 알고리즘
- 롤
- 코딩테스트준비
- 그리디알고리즘
- 파이썬
- 자바
- SQL
- drf
- github
- 스파르타내일배움캠프
- Django
- 그리디
- 스파르타내일배움캠프TIL
- git
- programmers
- 백준
- Today
- Total
목록롤 (6)
Lina's Toolbox
puuid로 챔피언 마스터리 정보 불러오기 https://developer.riotgames.com/apis#champion-mastery-v4 Riot Developer Portal developer.riotgames.com챔피언 숙련도 관련 정보는 여기서 얻을 수 있다!나는 puuid를 통해 상위 n개의 선호 챔피언 정보를 가져오는/lol/champion-mastery/v4/champion-masteries/by-puuid/{encryptedPUUID}/top를 사용했다. 리턴 값이 꽤 많은데, 사실 내가 사용할 건 championId 딱 하나다. 😅 account-v1를 통해 조회한 인코딩된 puuid를 입력하고,내가 보고싶은 상위 선호 챔피언의 갯수(count)를 적고 Api key 선택 후 요..
1. puuid로 matchId 구하기나는 소환사가 주로 플레이하는, 선호하는 포지션(라인) 정보를 가져오기를 원했다.그런데 지금 Secret Client를 발급을 못받았기 때문에 RSO가 불가능한 상황인데, 이상하게 지금 공식 docs에는 매치정보는 RSO로 조회하는 것밖에 없다..ㅠㅠ 그래서 포기해야하나.. 하다가 그냥 Endpoint를 내맘대로 작성해봤는데,ㅋㅋㅋㅋㅋ아닠ㅋㅋ혹시나 해서 https://asia.api.riotgames.com/lol/match/v5/matches/by-puuid/{puuid}/ids?api_key={api_key} 이렇게 해봤더니 진짜 된다!!!그래서 신나게 이걸 이용했다! 파이썬 코드def get_match_ids(api_key, puuid): """PUUID로..
SummonerID로 소환사의 리그 관련 정보 불러오기 https://developer.riotgames.com/apis#league-v4/GET_getLeagueEntriesForSummoner Riot Developer Portal developer.riotgames.com /lol/league/v4/entries/by-summoner/{encryptedSummonerId} 을 이용해보겠다. Return Value이 전 포스팅까지 썼던 api에 비해, 리턴 밸류가 많은 편인 걸 볼 수 있다. queueType솔로랭크인지, 자유 랭크인지 등의 랭크 타입을 나타낸다.hotSteak해당 유저가 최근에 연승 중일 경우 True veteran이 값은 소환사가 얼마나 많은 게임을 플레이했는지. 일반적으로 많은..
https://kimwoolina.tistory.com/136 [RIOT API] 라이엇 API 사용하는법 1. Production API Key 발급 받기 / 라이엇 계정으로 로그인(RSO)? - Secret C먼저 개발자 API key 를 발급받자.https://developer.riotgames.com/ Riot Developer PortalAbout the Riot Games API With this site we hope to provide the League of Legends developer community with access to game data in a secure and reliable way. Thikimwoolina.tistory.comhttps://kimwoolina.tis..
https://developer.riotgames.com/apis Riot Developer Portal developer.riotgames.com라이엇 API는 여기에 정리 되어있다! 소환사명 + 태그로 puuid 발급 받기라이엇 API는 대부분 원하는 정보를 바로 얻을 수 없고,대부분 1을 구한 뒤 , 1을 이용해 2를 구하고, 2를 이용해 마침내 내가 원하던 정보 3을 구할 수 있는 식이다.가장 1번이 되는 게 보통 이 puuid를 구하는 것이다. Jump to Inputs 눌러서(아래) 가보자. 파라미터를 입력해준다. 나는 내가 사랑하는 우리혁의 유저네임으로 입력해봤다.다음으로 맞는 지역을 선택하자. 한국은 ASIA서버에 속해있다. 그리고 API Key는 발급받은 production key가 있..
먼저 개발자 API key 를 발급받자.https://developer.riotgames.com/ Riot Developer PortalAbout the Riot Games API With this site we hope to provide the League of Legends developer community with access to game data in a secure and reliable way. This is just part of our ongoing effort to respond to players' and developers' requests for data anddeveloper.riotgames.com이 키를 그냥 사용해도 되지만, Rate limit도 작고 1일 정도 후에 만..