aboutsummaryrefslogtreecommitdiff
path: root/user.go
diff options
context:
space:
mode:
authorVidhu Kant Sharma <vidhukant@vidhukant.com>2023-08-15 15:42:00 +0530
committerVidhu Kant Sharma <vidhukant@vidhukant.com>2023-08-15 15:42:00 +0530
commit33283bff8b1ae239036aeb1526ec3b7483767ed7 (patch)
tree3219f6a539acca526d2ea6c2fa2d6c79c0b8e958 /user.go
parentaf9d2adedcb37b2c6c316cf52950a19d2a245803 (diff)
added option to use client authv0.0.5
Diffstat (limited to 'user.go')
-rw-r--r--user.go5
1 files changed, 5 insertions, 0 deletions
diff --git a/user.go b/user.go
index 16ca2b8..870c137 100644
--- a/user.go
+++ b/user.go
@@ -20,6 +20,11 @@ package mg
import "encoding/json"
func (c Client) GetSelfInfo(user *User, getStatistics bool) error {
+ if c.ClientAuthOnly {
+ // this endpoint requires main auth
+ return ErrClientAuthNotSupported
+ }
+
endpoint := BASE_URL + "/users/@me"
if getStatistics {
endpoint += "?fields=anime_statistics"