-
Notifications
You must be signed in to change notification settings - Fork 4
Open
Description
It would be nice if you could use AnimeListEntry's id's to lookup information of an anime directly without returning a cumbersome result list. Something like:
API api = new MALAPI.API(username,password);
UserAnimeList list = api.UsersController.GetUserAnimeList(username);
api.SearchController.SearchForAnime(list.Animes[0].SeriesId);
instead of:
API api = new MALAPI.API(username,password);
UserAnimeList list = api.UsersController.GetUserAnimeList(username);
api.SearchController.SearchForAnime(list.Animes[0].SeriesTitle).Entries[0];
If you want to be able to quickly check the user-rating of anime within a user's MAL list I think this would be a lot nicer. And perhaps even faster. It's also more secure and safe
Metadata
Metadata
Assignees
Labels
No labels