func Bool(v bool) *bool
Bool returns a new pointer to the given bool value.
func Float(v float64) *float64
Float returns a new pointer to the given float64 value.
type APIError struct { Errors []ErrorDetail `json:"errors"` }
APIError represents a Twitter API Error response https://dev.twitter.com/overview/api/response-codes
func (e APIError) Empty() bool
Empty returns true if empty. Otherwise, at least 1 error message/code is present and false is returned.
func (e APIError) Error() string
type AccountService struct {
// contains filtered or unexported fields
}
AccountService provides a method for account credential verification.
func (s *AccountService) VerifyCredentials(params *AccountVerifyParams) (*User, *http.Response, error)
VerifyCredentials returns the authorized user if credentials are valid and returns an error otherwise. Requires a user auth context. https://dev.twitter.com/rest/reference/get/account/verify_credentials
type AccountVerifyParams struct { IncludeEntities *bool `url:"include_entities,omitempty"` SkipStatus *bool `url:"skip_status,omitempty"` IncludeEmail *bool `url:"include_email,omitempty"` }
AccountVerifyParams are the params for AccountService.VerifyCredentials.
type BoundingBox struct { Coordinates [][][2]float64 `json:"coordinates"` Type string `json:"type"` }
BoundingBox represents the bounding coordinates (longitude, latitutde) defining the bounds of a box containing a Place entity.
type Client struct { // Twitter API Services Accounts *AccountService Statuses *StatusService Timelines *TimelineService Users *UserService Followers *FollowerService DirectMessages *DirectMessageService Streams *StreamService // contains filtered or unexported fields }
Client is a Twitter client for making Twitter API requests.
func NewClient(httpClient *http.Client) *Client
NewClient returns a new Client.
type Contributor struct { ID int64 `json:"id"` IDStr string `json:"id_str"` ScreenName string `json:"screen_name"` }
Contributor represents a brief summary of a User identifiers.
type Coordinates struct { Coordinates [2]float64 `json:"coordinates"` Type string `json:"type"` }
Coordinates are pairs of longitude and latitude locations.
type Demux interface { Handle(message interface{}) HandleChan(messages <-chan interface{}) }
A Demux receives interface{} messages individually or from a channel and sends those messages to one or more outputs determined by the implementation.
type DirectMessage struct { CreatedAt string `json:"created_at"` Entities *Entities `json:"entities"` ID int64 `json:"id"` IDStr string `json:"id_str"` Recipient *User `json:"recipient"` RecipientID int64 `json:"recipient_id"` RecipientScreenName string `json:"recipient_screen_name"` Sender *User `json:"sender"` SenderID int64 `json:"sender_id"` SenderScreenName string `json:"sender_screen_name"` Text string `json:"text"` }
DirectMessage is a direct message to a single recipient.
type DirectMessageDestroyParams struct { ID int64 `url:"id,omitempty"` IncludeEntities *bool `url:"include_entities,omitempty"` }
DirectMessageDestroyParams are the parameters for DirectMessageService.Destroy
type DirectMessageGetParams struct { SinceID int64 `url:"since_id,omitempty"` MaxID int64 `url:"max_id,omitempty"` Count int `url:"count,omitempty"` IncludeEntities *bool `url:"include_entities,omitempty"` SkipStatus *bool `url:"skip_status,omitempty"` }
DirectMessageGetParams are the parameters for DirectMessageService.Get
type DirectMessageNewParams struct { UserID int64 `url:"user_id,omitempty"` ScreenName string `url:"screen_name,omitempty"` Text string `url:"text"` }
DirectMessageNewParams are the parameters for DirectMessageService.New
type DirectMessageSentParams struct { SinceID int64 `url:"since_id,omitempty"` MaxID int64 `url:"max_id,omitempty"` Count int `url:"count,omitempty"` Page int `url:"page,omitempty"` IncludeEntities *bool `url:"include_entities,omitempty"` }
DirectMessageSentParams are the parameters for DirectMessageService.Sent
type DirectMessageService struct {
// contains filtered or unexported fields
}
DirectMessageService provides methods for accessing Twitter direct message API endpoints.
func (s *DirectMessageService) Destroy(id int64, params *DirectMessageDestroyParams) (*DirectMessage, *http.Response, error)
Destroy deletes the Direct Message with the given id and returns it if successful. Requires a user auth context with DM scope. https://dev.twitter.com/rest/reference/post/direct_messages/destroy
func (s *DirectMessageService) Get(params *DirectMessageGetParams) ([]DirectMessage, *http.Response, error)
Get returns recent Direct Messages received by the authenticated user. Requires a user auth context with DM scope. https://dev.twitter.com/rest/reference/get/direct_messages
func (s *DirectMessageService) New(params *DirectMessageNewParams) (*DirectMessage, *http.Response, error)
New sends a new Direct Message to a specified user as the authenticated user. Requires a user auth context with DM scope. https://dev.twitter.com/rest/reference/post/direct_messages/new
func (s *DirectMessageService) Sent(params *DirectMessageSentParams) ([]DirectMessage, *http.Response, error)
Sent returns recent Direct Messages sent by the authenticated user. Requires a user auth context with DM scope. https://dev.twitter.com/rest/reference/get/direct_messages/sent
func (s *DirectMessageService) Show(id int64) (*DirectMessage, *http.Response, error)
Show returns the requested Direct Message. Requires a user auth context with DM scope. https://dev.twitter.com/rest/reference/get/direct_messages/show
type Entities struct { Hashtags []HashtagEntity `json:"hashtags"` Media []MediaEntity `json:"media"` Urls []URLEntity `json:"urls"` UserMentions []MentionEntity `json:"user_mentions"` }
Entities represent metadata and context info parsed from Twitter components. https://dev.twitter.com/overview/api/entities TODO: symbols
type ErrorDetail struct { Message string `json:"message"` Code int `json:"code"` }
ErrorDetail represents an individual item in an APIError.
type Event struct { Event string `json:"event"` CreatedAt string `json:"created_at"` Target *User `json:"target"` Source *User `json:"source"` // TODO: add List or deprecate it TargetObject *Tweet `json:"target_object"` }
Event is a non-Tweet notification message (e.g. like, retweet, follow). https://dev.twitter.com/streaming/overview/messages-types#Events_event
type ExtendedEntity struct { Media []MediaEntity `json:"media"` }
ExtendedEntity contains media information. https://dev.twitter.com/overview/api/entities-in-twitter-objects#extended_entities
type FollowerIDParams struct { UserID int64 `url:"user_id,omitempty"` ScreenName string `url:"screen_name,omitempty"` Cursor int64 `url:"cursor,omitempty"` Count int `url:"count,omitempty"` }
FollowerIDParams are the parameters for FollowerService.Ids
type FollowerIDs struct { IDs []int64 `json:"ids"` NextCursor int64 `json:"next_cursor"` NextCursorStr string `json:"next_cursor_str"` PreviousCursor int64 `json:"previous_cursor"` PreviousCursorStr string `json:"previous_cursor_str"` }
FollowerIDs is a cursored collection of follower ids.
type FollowerListParams struct { UserID int64 `url:"user_id,omitempty"` ScreenName string `url:"screen_name,omitempty"` Cursor int `url:"cursor,omitempty"` Count int `url:"count,omitempty"` SkipStatus *bool `url:"skip_status,omitempty"` IncludeUserEntities *bool `url:"include_user_entities,omitempty"` }
FollowerListParams are the parameters for FollowerService.List
type FollowerService struct {
// contains filtered or unexported fields
}
FollowerService provides methods for accessing Twitter followers endpoints.
func (s *FollowerService) IDs(params *FollowerIDParams) (*FollowerIDs, *http.Response, error)
IDs returns a cursored collection of user ids following the specified user. https://dev.twitter.com/rest/reference/get/followers/ids
func (s *FollowerService) List(params *FollowerListParams) (*Followers, *http.Response, error)
List returns a cursored collection of Users following the specified user. https://dev.twitter.com/rest/reference/get/followers/list
type Followers struct { Users []User `json:"users"` NextCursor int64 `json:"next_cursor"` NextCursorStr string `json:"next_cursor_str"` PreviousCursor int64 `json:"previous_cursor"` PreviousCursorStr string `json:"previous_cursor_str"` }
Followers is a cursored collection of followers.
type FriendsList struct { Friends []int64 `json:"friends"` }
FriendsList is a list of some of a user's friends. https://dev.twitter.com/streaming/overview/messages-types#friends_list_friends
type HashtagEntity struct { Indices Indices `json:"indices"` Text string `json:"text"` }
HashtagEntity represents a hashtag which has been parsed from text.
type HomeTimelineParams struct { Count int `url:"count,omitempty"` SinceID int64 `url:"since_id,omitempty"` MaxID int64 `url:"max_id,omitempty"` TrimUser *bool `url:"trim_user,omitempty"` ExcludeReplies *bool `url:"exclude_replies,omitempty"` ContributorDetails *bool `url:"contributor_details,omitempty"` IncludeEntities *bool `url:"include_entities,omitempty"` }
HomeTimelineParams are the parameters for TimelineService.HomeTimeline.
type Indices [2]int
Indices represent the start and end offsets within text.
func (i Indices) End() int
End returns the index at which an entity ends, exclusive.
func (i Indices) Start() int
Start returns the index at which an entity starts, inclusive.
type LocationDeletion struct { UserID int64 `json:"user_id"` UserIDStr string `json:"user_id_str"` UpToStatusID int64 `json:"up_to_status_id"` UpToStatusIDStr string `json:"up_to_status_id_str"` }
LocationDeletion indicates geolocation data must be stripped from a range of Tweets. https://dev.twitter.com/streaming/overview/messages-types#Location_deletion_notices_scrub_geo
type MediaEntity struct { URLEntity ID int64 `json:"id"` IDStr string `json:"id_str"` MediaURL string `json:"media_url"` MediaURLHttps string `json:"media_url_https"` SourceStatusID int64 `json:"source_status_id"` SourceStatusIDStr string `json:"source_status_id_str"` Type string `json:"type"` }
MediaEntity represents media elements associated with a Tweet. TODO: add Sizes
type MentionEntity struct { Indices Indices `json:"indices"` ID int64 `json:"id"` IDStr string `json:"id_str"` Name string `json:"name"` ScreenName string `json:"screen_name"` }
MentionEntity represents Twitter user mentions parsed from text.
type MentionTimelineParams struct { Count int `url:"count,omitempty"` SinceID int64 `url:"since_id,omitempty"` MaxID int64 `url:"max_id,omitempty"` TrimUser *bool `url:"trim_user,omitempty"` ContributorDetails *bool `url:"contributor_details,omitempty"` IncludeEntities *bool `url:"include_entities,omitempty"` }
MentionTimelineParams are the parameters for TimelineService.MentionTimeline.
type OEmbedTweet struct { URL string `json:"url"` ProviderURL string `json:"provider_url"` ProviderName string `json:"provider_name"` AuthorName string `json:"author_name"` Version string `json:"version"` AuthorURL string `json:"author_url"` Type string `json:"type"` HTML string `json:"html"` Height int64 `json:"height"` Width int64 `json:"width"` CacheAge string `json:"cache_age"` }
OEmbedTweet represents a Tweet in oEmbed format.
type Place struct { Attributes map[string]string `json:"attributes"` BoundingBox *BoundingBox `json:"bounding_box"` Country string `json:"country"` CountryCode string `json:"country_code"` FullName string `json:"full_name"` Geometry *BoundingBox `json:"geometry"` ID string `json:"id"` Name string `json:"name"` PlaceType string `json:"place_type"` Polylines []string `json:"polylines"` URL string `json:"url"` }
Place represents a Twitter Place / Location https://dev.twitter.com/overview/api/places
type RetweetsOfMeTimelineParams struct { Count int `url:"count,omitempty"` SinceID int64 `url:"since_id,omitempty"` MaxID int64 `url:"max_id,omitempty"` TrimUser *bool `url:"trim_user,omitempty"` IncludeEntities *bool `url:"include_entities,omitempty"` IncludeUserEntities *bool `url:"include_user_entities"` }
RetweetsOfMeTimelineParams are the parameters for TimelineService.RetweetsOfMeTimeline.
type StallWarning struct { Code string `json:"code"` Message string `json:"message"` PercentFull int `json:"percent_full"` }
StallWarning indicates the client is falling behind in the stream. https://dev.twitter.com/streaming/overview/messages-types#stall_warnings
type StatusDeletion struct { ID int64 `json:"id"` IDStr string `json:"id_str"` UserID int64 `json:"user_id"` UserIDStr string `json:"user_id_str"` }
StatusDeletion indicates that a given Tweet has been deleted. https://dev.twitter.com/streaming/overview/messages-types#status_deletion_notices_delete
type StatusDestroyParams struct { ID int64 `url:"id,omitempty"` TrimUser *bool `url:"trim_user,omitempty"` }
StatusDestroyParams are the parameters for StatusService.Destroy
type StatusLookupParams struct { ID []int64 `url:"id,omitempty,comma"` TrimUser *bool `url:"trim_user,omitempty"` IncludeEntities *bool `url:"include_entities,omitempty"` Map *bool `url:"map,omitempty"` }
StatusLookupParams are the parameters for StatusService.Lookup
type StatusOEmbedParams struct { ID int64 `url:"id,omitempty"` URL string `url:"url,omitempty"` Align string `url:"align,omitempty"` MaxWidth int64 `url:"maxwidth,omitempty"` HideMedia *bool `url:"hide_media,omitempty"` HideThread *bool `url:"hide_media,omitempty"` OmitScript *bool `url:"hide_media,omitempty"` WidgetType string `url:"widget_type,omitempty"` HideTweet *bool `url:"hide_tweet,omitempty"` }
StatusOEmbedParams are the parameters for StatusService.OEmbed
type StatusRetweetParams struct { ID int64 `url:"id,omitempty"` TrimUser *bool `url:"trim_user,omitempty"` }
StatusRetweetParams are the parameters for StatusService.Retweet
type StatusService struct {
// contains filtered or unexported fields
}
StatusService provides methods for accessing Twitter status API endpoints.
func (s *StatusService) Destroy(id int64, params *StatusDestroyParams) (*Tweet, *http.Response, error)
Destroy deletes the Tweet with the given id and returns it if successful. Requires a user auth context. https://dev.twitter.com/rest/reference/post/statuses/destroy/%3Aid
func (s *StatusService) Lookup(ids []int64, params *StatusLookupParams) ([]Tweet, *http.Response, error)
Lookup returns the requested Tweets as a slice. Combines ids from the required ids argument and from params.Id. https://dev.twitter.com/rest/reference/get/statuses/lookup
func (s *StatusService) OEmbed(params *StatusOEmbedParams) (*OEmbedTweet, *http.Response, error)
OEmbed returns the requested Tweet in oEmbed format. https://dev.twitter.com/rest/reference/get/statuses/oembed
func (s *StatusService) Retweet(id int64, params *StatusRetweetParams) (*Tweet, *http.Response, error)
Retweet retweets the Tweet with the given id and returns the original Tweet with embedded retweet details. Requires a user auth context. https://dev.twitter.com/rest/reference/post/statuses/retweet/%3Aid
func (s *StatusService) Show(id int64, params *StatusShowParams) (*Tweet, *http.Response, error)
Show returns the requested Tweet. https://dev.twitter.com/rest/reference/get/statuses/show/%3Aid
func (s *StatusService) Update(status string, params *StatusUpdateParams) (*Tweet, *http.Response, error)
Update updates the user's status, also known as Tweeting. Requires a user auth context. https://dev.twitter.com/rest/reference/post/statuses/update
type StatusShowParams struct { ID int64 `url:"id,omitempty"` TrimUser *bool `url:"trim_user,omitempty"` IncludeMyRetweet *bool `url:"include_my_retweet,omitempty"` IncludeEntities *bool `url:"include_entities,omitempty"` }
StatusShowParams are the parameters for StatusService.Show
type StatusUpdateParams struct { Status string `url:"status,omitempty"` InReplyToStatusID int64 `url:"in_reply_to_status_id,omitempty"` PossiblySensitive *bool `url:"possibly_sensitive,omitempty"` Lat *float64 `url:"lat,omitempty"` Long *float64 `url:"long,omitempty"` PlaceID string `url:"place_id,omitempty"` DisplayCoordinates *bool `url:"display_coordinates,omitempty"` TrimUser *bool `url:"trim_user,omitempty"` MediaIds []int64 `url:"media_ids,omitempty,comma"` }
StatusUpdateParams are the parameters for StatusService.Update
type StatusWithheld struct { ID int64 `json:"id"` UserID int64 `json:"user_id"` WithheldInCountries []string `json:"withheld_in_countries"` }
StatusWithheld indicates a Tweet with the given ID, belonging to UserId, has been withheld in certain countries. https://dev.twitter.com/streaming/overview/messages-types#withheld_content_notices
type Stream struct {
Messages chan interface{}
// contains filtered or unexported fields
}
Stream maintains a connection to the Twitter Streaming API, receives messages from the streaming response, and sends them on the Messages channel from a goroutine. The stream goroutine stops itself if an EOF is reached or retry errors occur, also closing the Messages channel.
The client must Stop() the stream when finished receiving, which will wait until the stream is properly stopped.
func (s *Stream) Stop()
Stop signals retry and receiver to stop, closes the Messages channel, and blocks until done.
type StreamDisconnect struct { Code int64 `json:"code"` StreamName string `json:"stream_name"` Reason string `json:"reason"` }
StreamDisconnect indicates the stream has been shutdown for some reason. https://dev.twitter.com/streaming/overview/messages-types#disconnect_messages
type StreamFilterParams struct { FilterLevel string `url:"filter_level,omitempty"` Follow []string `url:"follow,omitempty,comma"` Language []string `url:"language,omitempty,comma"` Locations []string `url:"locations,omitempty,comma"` StallWarnings *bool `url:"stall_warnings,omitempty"` Track []string `url:"track,omitempty,comma"` }
StreamFilterParams are parameters for StreamService.Filter.
type StreamFirehoseParams struct { Count int `url:"count,omitempty"` FilterLevel string `url:"filter_level,omitempty"` Language []string `url:"language,omitempty,comma"` StallWarnings *bool `url:"stall_warnings,omitempty"` }
StreamFirehoseParams are the parameters for StreamService.Firehose.
type StreamLimit struct { Track int64 `json:"track"` }
StreamLimit indicates a stream matched more statuses than its rate limit allowed. The track number is the number of undelivered matches. https://dev.twitter.com/streaming/overview/messages-types#limit_notices
type StreamSampleParams struct { StallWarnings *bool `url:"stall_warnings,omitempty"` }
StreamSampleParams are the parameters for StreamService.Sample.
type StreamService struct {
// contains filtered or unexported fields
}
StreamService provides methods for accessing the Twitter Streaming API.
func (srv *StreamService) Filter(params *StreamFilterParams) (*Stream, error)
Filter returns messages that match one or more filter predicates. https://dev.twitter.com/streaming/reference/post/statuses/filter
func (srv *StreamService) Firehose(params *StreamFirehoseParams) (*Stream, error)
Firehose returns all public messages and statuses. Requires special permission to access. https://dev.twitter.com/streaming/reference/get/statuses/firehose
func (srv *StreamService) Sample(params *StreamSampleParams) (*Stream, error)
Sample returns a small sample of public stream messages. https://dev.twitter.com/streaming/reference/get/statuses/sample
func (srv *StreamService) Site(params *StreamSiteParams) (*Stream, error)
Site returns messages for a set of users. Requires special permission to access. https://dev.twitter.com/streaming/reference/get/site
func (srv *StreamService) User(params *StreamUserParams) (*Stream, error)
User returns a stream of messages specific to the authenticated User. https://dev.twitter.com/streaming/reference/get/user
type StreamSiteParams struct { FilterLevel string `url:"filter_level,omitempty"` Follow []string `url:"follow,omitempty,comma"` Language []string `url:"language,omitempty,comma"` Replies string `url:"replies,omitempty"` StallWarnings *bool `url:"stall_warnings,omitempty"` With string `url:"with,omitempty"` }
StreamSiteParams are the parameters for StreamService.Site.
type StreamUserParams struct { FilterLevel string `url:"filter_level,omitempty"` Language []string `url:"language,omitempty,comma"` Locations []string `url:"locations,omitempty,comma"` Replies string `url:"replies,omitempty"` StallWarnings *bool `url:"stall_warnings,omitempty"` Track []string `url:"track,omitempty,comma"` With string `url:"with,omitempty"` }
StreamUserParams are the parameters for StreamService.User.
type SwitchDemux struct { All func(message interface{}) Tweet func(tweet *Tweet) DM func(dm *DirectMessage) StatusDeletion func(deletion *StatusDeletion) LocationDeletion func(LocationDeletion *LocationDeletion) StreamLimit func(limit *StreamLimit) StatusWithheld func(statusWithheld *StatusWithheld) UserWithheld func(userWithheld *UserWithheld) StreamDisconnect func(disconnect *StreamDisconnect) Warning func(warning *StallWarning) FriendsList func(friendsList *FriendsList) Event func(event *Event) Other func(message interface{}) }
SwitchDemux receives messages and uses a type switch to send each typed message to a handler function.
func NewSwitchDemux() SwitchDemux
NewSwitchDemux returns a new SwitchMux which has NoOp handler functions.
func (d SwitchDemux) Handle(message interface{})
Handle determines the type of a message and calls the corresponding receiver function with the typed message. All messages are passed to the All func. Messages with unmatched types are passed to the Other func.
func (d SwitchDemux) HandleChan(messages <-chan interface{})
HandleChan receives messages and calls the corresponding receiver function with the typed message. All messages are passed to the All func. Messages with unmatched type are passed to the Other func.
type TimelineService struct {
// contains filtered or unexported fields
}
TimelineService provides methods for accessing Twitter status timeline API endpoints.
func (s *TimelineService) HomeTimeline(params *HomeTimelineParams) ([]Tweet, *http.Response, error)
HomeTimeline returns recent Tweets and retweets from the user and those users they follow. Requires a user auth context. https://dev.twitter.com/rest/reference/get/statuses/home_timeline
func (s *TimelineService) MentionTimeline(params *MentionTimelineParams) ([]Tweet, *http.Response, error)
MentionTimeline returns recent Tweet mentions of the authenticated user. Requires a user auth context. https://dev.twitter.com/rest/reference/get/statuses/mentions_timeline
func (s *TimelineService) RetweetsOfMeTimeline(params *RetweetsOfMeTimelineParams) ([]Tweet, *http.Response, error)
RetweetsOfMeTimeline returns the most recent Tweets by the authenticated user that have been retweeted by others. Requires a user auth context. https://dev.twitter.com/rest/reference/get/statuses/retweets_of_me
func (s *TimelineService) UserTimeline(params *UserTimelineParams) ([]Tweet, *http.Response, error)
UserTimeline returns recent Tweets from the specified user. https://dev.twitter.com/rest/reference/get/statuses/user_timeline
type Tweet struct { Contributors []Contributor `json:"contributors"` Coordinates *Coordinates `json:"coordinates"` CreatedAt string `json:"created_at"` CurrentUserRetweet *TweetIdentifier `json:"current_user_retweet"` Entities *Entities `json:"entities"` FavoriteCount int `json:"favorite_count"` Favorited bool `json:"favorited"` FilterLevel string `json:"filter_level"` ID int64 `json:"id"` IDStr string `json:"id_str"` InReplyToScreenName string `json:"in_reply_to_screen_name"` InReplyToStatusID int64 `json:"in_reply_to_status_id"` InReplyToStatusIDStr string `json:"in_reply_to_status_id_str"` InReplyToUserID int64 `json:"in_reply_to_user_id"` InReplyToUserIDStr string `json:"in_reply_to_user_id_str"` Lang string `json:"lang"` PossiblySensitive bool `json:"possibly_sensitive"` RetweetCount int `json:"retweet_count"` Retweeted bool `json:"retweeted"` RetweetedStatus *Tweet `json:"retweeted_status"` Source string `json:"source"` Scopes map[string]interface{} `json:"scopes"` Text string `json:"text"` Place *Place `json:"place"` Truncated bool `json:"truncated"` User *User `json:"user"` WithheldCopyright bool `json:"withheld_copyright"` WithheldInCountries []string `json:"withheld_in_countries"` WithheldScope string `json:"withheld_scope"` ExtendedEntities *ExtendedEntity `json:"extended_entities"` QuotedStatusID int64 `json:"quoted_status_id"` QuotedStatusIDStr string `json:"quoted_status_id_str"` QuotedStatus *Tweet `json:"quoted_status"` }
Tweet represents a Twitter Tweet, previously called a status. https://dev.twitter.com/overview/api/tweets Unused or deprecated fields not provided: Geo, Annotations
type TweetIdentifier struct { ID int64 `json:"id"` IDStr string `json:"id_str"` }
TweetIdentifier represents the id by which a Tweet can be identified.
type URLEntity struct { Indices Indices `json:"indices"` DisplayURL string `json:"display_url"` ExpandedURL string `json:"expanded_url"` URL string `json:"url"` }
URLEntity represents a URL which has been parsed from text.
type User struct { ContributorsEnabled bool `json:"contributors_enabled"` CreatedAt string `json:"created_at"` DefaultProfile bool `json:"default_profile"` DefaultProfileImage bool `json:"default_profile_image"` Description string `json:"description"` Email string `json:"email"` Entities *UserEntities `json:"entities"` FavouritesCount int `json:"favourites_count"` FollowRequestSent bool `json:"follow_request_sent"` Following bool `json:"following"` FollowersCount int `json:"followers_count"` FriendsCount int `json:"friends_count"` GeoEnabled bool `json:"geo_enabled"` ID int64 `json:"id"` IDStr string `json:"id_str"` IsTranslator bool `json:"id_translator"` Lang string `json:"lang"` ListedCount int `json:"listed_count"` Location string `json:"location"` Name string `json:"name"` Notifications bool `json:"notifications"` ProfileBackgroundColor string `json:"profile_background_color"` ProfileBackgroundImageURL string `json:"profile_background_image_url"` ProfileBackgroundImageURLHttps string `json:"profile_background_image_url_https"` ProfileBackgroundTile bool `json:"profile_background_tile"` ProfileBannerURL string `json:"profile_banner_url"` ProfileImageURL string `json:"profile_image_url"` ProfileImageURLHttps string `json:"profile_image_url_https"` ProfileLinkColor string `json:"profile_link_color"` ProfileSidebarBorderColor string `json:"profile_sidebar_border_color"` ProfileSidebarFillColor string `json:"profile_sidebar_fill_color"` ProfileTextColor string `json:"profile_text_color"` ProfileUseBackgroundImage bool `json:"profile_use_background_image"` Protected bool `json:"protected"` ScreenName string `json:"screen_name"` ShowAllInlineMedia bool `json:"show_all_inline_media"` Status *Tweet `json:"status"` StatusesCount int `json:"statuses_count"` Timezone string `json:"time_zone"` URL string `json:"url"` UtcOffset int `json:"utc_offset"` Verified bool `json:"verified"` WithheldInCountries string `json:"withheld_in_countries"` WithholdScope string `json:"withheld_scope"` }
User represents a Twitter User. https://dev.twitter.com/overview/api/users
type UserEntities struct { URL Entities `json:"url"` Description Entities `json:"description"` }
UserEntities contain Entities parsed from User url and description fields. https://dev.twitter.com/overview/api/entities-in-twitter-objects#users
type UserLookupParams struct { UserID []int64 `url:"user_id,omitempty,comma"` ScreenName []string `url:"screen_name,omitempty,comma"` IncludeEntities *bool `url:"include_entities,omitempty"` // whether 'status' should include entities }
UserLookupParams are the parameters for UserService.Lookup.
type UserSearchParams struct { Query string `url:"q,omitempty"` Page int `url:"page,omitempty"` // 1-based page number Count int `url:"count,omitempty"` IncludeEntities *bool `url:"include_entities,omitempty"` // whether 'status' should include entities }
UserSearchParams are the parameters for UserService.Search.
type UserService struct {
// contains filtered or unexported fields
}
UserService provides methods for accessing Twitter user API endpoints.
func (s *UserService) Lookup(params *UserLookupParams) ([]User, *http.Response, error)
Lookup returns the requested Users as a slice. https://dev.twitter.com/rest/reference/get/users/lookup
func (s *UserService) Search(query string, params *UserSearchParams) ([]User, *http.Response, error)
Search queries public user accounts. Requires a user auth context. https://dev.twitter.com/rest/reference/get/users/search
func (s *UserService) Show(params *UserShowParams) (*User, *http.Response, error)
Show returns the requested User. https://dev.twitter.com/rest/reference/get/users/show
type UserShowParams struct { UserID int64 `url:"user_id,omitempty"` ScreenName string `url:"screen_name,omitempty"` IncludeEntities *bool `url:"include_entities,omitempty"` // whether 'status' should include entities }
UserShowParams are the parameters for UserService.Show.
type UserTimelineParams struct { UserID int64 `url:"user_id,omitempty"` ScreenName string `url:"screen_name,omitempty"` Count int `url:"count,omitempty"` SinceID int64 `url:"since_id,omitempty"` MaxID int64 `url:"max_id,omitempty"` TrimUser *bool `url:"trim_user,omitempty"` ExcludeReplies *bool `url:"exclude_replies,omitempty"` ContributorDetails *bool `url:"contributor_details,omitempty"` IncludeRetweets *bool `url:"include_rts,omitempty"` }
UserTimelineParams are the parameters for TimelineService.UserTimeline.
type UserWithheld struct { ID int64 `json:"id"` WithheldInCountries []string `json:"withheld_in_countries"` }
UserWithheld indicates a User with the given ID has been withheld in certain countries. https://dev.twitter.com/streaming/overview/messages-types#withheld_content_notices