diff options
author | Vidhu Kant Sharma <vidhukant@vidhukant.xyz> | 2022-09-20 23:11:52 +0530 |
---|---|---|
committer | Vidhu Kant Sharma <vidhukant@vidhukant.xyz> | 2022-09-20 23:11:52 +0530 |
commit | f23dae307e06d95499b35dbdd8e341b45756b330 (patch) | |
tree | b46c707a8cd62f8c63c78eb4018dc9bc0da1cffe /content/docs/mal2go/v4/anime/get-suggested-anime.md |
First commit
Diffstat (limited to 'content/docs/mal2go/v4/anime/get-suggested-anime.md')
-rw-r--r-- | content/docs/mal2go/v4/anime/get-suggested-anime.md | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/content/docs/mal2go/v4/anime/get-suggested-anime.md b/content/docs/mal2go/v4/anime/get-suggested-anime.md new file mode 100644 index 0000000..98dc01c --- /dev/null +++ b/content/docs/mal2go/v4/anime/get-suggested-anime.md @@ -0,0 +1,46 @@ +--- +title: "Get suggested animes" +description: "Returns some suggestions for the user" +weight: 6 +--- + +`GetSuggestedAnime` returns a list of animes suggested to the authenticated user. + +- `limit int` Is the max amount of results to get. Max is 100. +- `offset int` Is the "offset" for results. If offset is greater than 0 the first n number of reults will be ignored. +- `nsfw bool` Wether to include NSFW rated results +- `fields []string` The fields to include in the response. [Here](/docs/mal2go/v4/anime/types#mal2goanimeanime) is a list of the valid fields. Just using an empty slice (`[]string{}`) will include all the fields. + +Example: + +``` go +package main + +import ( + "github.com/MikunoNaka/MAL2Go/v4/anime" + "log" + "fmt" +) + +func main() { + authToken := "YOUR_TOKEN_HERE" + myClient := anime.Client { + AuthToken: "Bearer " + authToken, + } + + limit, offset := 10, 0 + nsfw := true // include NSFW results + fields := []string{"title"} + + suggestedAnimes, err := myClient.GetSuggestedAnime(limit, offset, nsfw, fields) + if err != nil { + log.Fatal(err) // remember kids, always handle errors + } + + for _, i := range suggestedAnimes { + fmt.Println(i.Title) + } +} +``` + +Above example prints 10 animes suggested to the authenticated user. |