Giter Club home page Giter Club logo

Comments (6)

UghThatGuyAgain avatar UghThatGuyAgain commented on May 29, 2024 1

Alright, thanks. Completely missed that there was a matchlist by name method, I should really read closer. Keep up the good work!

from kayn.

UghThatGuyAgain avatar UghThatGuyAgain commented on May 29, 2024

To provide some more information: I'm using the summoner call to get the account id of a player to get a matchlist, with the discord.js library. The command would be %summoner , and it works in the case of a name such as Dropkicked, but doing %summoner ÁssBlaster returns a 404. Full error:
404 DATA NOT FOUND @ https://na1.api.riotgames.com/lol/summoner/v3/summoners/232394225?api_key=

from kayn.

UghThatGuyAgain avatar UghThatGuyAgain commented on May 29, 2024

Finally, a basic example of what I'm doing:

api.Summoner.by.name(name)
.then(data => {
api.Matchlist.by.id(data.accountId)
.then(matchdata => {
console.log(matchdata.matches[0].lane);
}).catch(error => console.error(error)) // Matchlist by id
}).catch(error => console.error(error)) // Summoner by name

When name is ÁssBlaster, it returns the 404.
When name is Dropkicked, it returns the lane, (usually JUNGLE or BOTTOM).

(Apologies for spacing and such, Github's code option with the backticks was even worse.

from kayn.

cnguy avatar cnguy commented on May 29, 2024

you should be doing

api.Matchlist.by.account(data.accountId)

by.id = SummonerId // You put an accountId in this id function, causing a 404 because there's no summoner with a summoner id that equals that account id (sometimes, these situations do occur though).
by.account = AccountId

https://github.com/ChauTNguyen/kindred-api/wiki/SUMMONER-V3

It can be somewhat confusing, but at the time I decided to go with the shorter names because I didn't think Riot would use account ids for the endpoints; Based on that, I decided that the primary id is the summoner id, which is why I simply use by.id instead of by.summonerId or something like that. In hindsight, that was a bad idea. :) Other libraries that spawned after mine use more verbose names like by.summonerId and by.accountId (these are much better).

Note that there is a shortcut for what you're doing:

k.Matchlist.by.name('ÁssBlaster')

will handle the summoner conversion for you.

from kayn.

UghThatGuyAgain avatar UghThatGuyAgain commented on May 29, 2024

Okay, thanks! But just for confirmation, this still takes 1 rate count off of summoner, and then 1 off matchlist, correct? It shouldn't matter, considering rates are crazy high, but I was just curious.

from kayn.

cnguy avatar cnguy commented on May 29, 2024

@UghThatGuyAgain

Yeah, unfortunately it still does haha. It's just a small way of cleaning up a lot of function chaining.

from kayn.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.