diff --git a/profile.go b/profile.go index de3bbbc..34e80fb 100644 --- a/profile.go +++ b/profile.go @@ -9,4 +9,10 @@ type Profile struct { Locale string `json:"locale"` Timezone float64 `json:"timezone"` Gender string `json:"gender"` + + // instagram user profile + Username string `json:"username,omitempty"` + IsPrivate bool `json:"is_private,omitempty"` + FollowCount int32 `json:"follow_count,omitempty"` + FollowedByCount int32 `json:"followed_by_count,omitempty"` }