aboutsummaryrefslogtreecommitdiff
path: root/content/docs/mal2go/v4/manga/search-for-a-manga.md
diff options
context:
space:
mode:
authorVidhu Kant Sharma <vidhukant@vidhukant.com>2023-08-13 11:54:33 +0530
committerVidhu Kant Sharma <vidhukant@vidhukant.com>2023-08-13 11:54:33 +0530
commit211888b8a396df8d5166afba85af54e0240015c1 (patch)
tree14edbc114f5cec9da57dd08c9369e3c2f1aaa80c /content/docs/mal2go/v4/manga/search-for-a-manga.md
parent54e1b7496d6a06c92b030114e9d54019ab4ba87f (diff)
removed MAL2Go documentation
Diffstat (limited to 'content/docs/mal2go/v4/manga/search-for-a-manga.md')
-rw-r--r--content/docs/mal2go/v4/manga/search-for-a-manga.md51
1 files changed, 0 insertions, 51 deletions
diff --git a/content/docs/mal2go/v4/manga/search-for-a-manga.md b/content/docs/mal2go/v4/manga/search-for-a-manga.md
deleted file mode 100644
index 3d28ef4..0000000
--- a/content/docs/mal2go/v4/manga/search-for-a-manga.md
+++ /dev/null
@@ -1,51 +0,0 @@
----
-title: "Search for a manga"
-description: "Use a search string to get a list of mangas"
-weight: 2
----
-
-Use the `SearchManga` method to search for a manga. This method takes these arguments:
-
-- `searchString string` Is pretty obvious. This term is used to search for a manga on MyAnimeList.
-- `limit int` Is the max amount of search results to get. Max is 100.
-- `offset int` Is the "offset" for the search results. If offset is greater than 0 the first n number of search reults will be ignored.
-- `nsfw bool` Wether to include NSFW rated search results
-- `fields []string` The fields to include in the search results. [Here]() is a list of the valid fields. Just using an empty slice (`[]string{}`) will include all the fields.
-The MyAnimeList API is picky about what fields to actually include with search results. To be sure that you are getting all the data it is recommended to use the [`GetMangaById`](/docs/mal2go/v4/manga/get-manga-by-id/) method which ensures that all the required fields are included.
-
-
-Example:
-
-``` go
-package main
-
-import (
- "github.com/MikunoNaka/MAL2Go/v4/manga"
- "log"
- "fmt"
-)
-
-func main() {
- authToken := "YOUR_TOKEN_HERE"
- myClient := manga.Client {
- AuthToken: "Bearer " + authToken,
- }
-
- searchString := "mushishi" // search for mushishi
- limit := 10 // get 10 search results
- offset := 0 // no offset
- searchNsfw := false // don't include NSFW results
- fields := []string{"title"} // only pull the title
-
- searchResults, err := myClient.SearchManga(searchString, limit, offset, searchNsfw, fields)
- if err != nil {
- log.Fatal(err) // remember kids, always handle errors
- }
-
- // loop over the search results and print the title
- for _, manga := range searchResults {
- fmt.Println(manga.Title)
- }
-}
-```
-