aboutsummaryrefslogtreecommitdiff
path: root/user/README.md
blob: 27178353fd30ebb87bf4b168a70e70a34f76ce5d (plain)
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
# MAL2Go/user
MAL2Go `user` package has functionality related to getting data about the authenticated user.

## Usage
Firstly, import this package and instanciate the client.
``` go
import (
  "github.com/MikunoNaka/MAL2Go/v2/user"
)
```

Now instanciate with
``` go
myClient := user.Client {
  AuthToken: "Bearer " + yourTokenHere,
}
```

- ### Get authenticated user's info
``` go
userData := myClient.GetSelfUserInfo()

fmt.Println(userData.Name, userData.Picture)
```

The `User` datatype has the following fields:
- `Id` `int`
- `Name` `string`
- `Picture` `string`
- `Gender` `string`
- `Birthday` `string`
- `Location` `string`
- `JoinedAt` `string`
- `TimeZone` `string`
- `IsSupporter` `bool`

## Structure
- [user.go](user.go)
Contains all the exported functions for pulling data from the API.

- [user.structs.go](user.structs.go)
Represents the user data returned by the API

- [client.go](client.go)
The Client for accessing the API with this package.

- [request_handler.go](request_handler.go)
Responsible for making HTTP requests