trait TwitterStatusClient extends RestClient with Configurations
Implements the available requests for the statuses
resource.
- Alphabetic
- By Inheritance
- TwitterStatusClient
- Configurations
- RestClient
- OAuthClient
- RequestBuilding
- TransformerPipelineSupport
- TokenProvider
- CommonClient
- ActorContextExtractor
- ActorSystemProvider
- ExecutionContextProvider
- JsonSupport
- Json4sSupport
- AnyRef
- Any
- Hide All
- Show All
- Public
- All
Type Members
-
class
OAuthRequestBuilder extends OAuthClient.RequestBuilder with BodyEncoder
- Definition Classes
- OAuthClient
-
class
RequestBuilder extends AnyRef
- Definition Classes
- RequestBuilding
-
type
RequestTransformer = (HttpRequest) ⇒ HttpRequest
- Definition Classes
- RequestBuilding
-
implicit
class
WithTransformation[A] extends AnyRef
- Definition Classes
- TransformerPipelineSupport
-
implicit
class
WithTransformerConcatenation[A, B] extends (A) ⇒ B
- Definition Classes
- TransformerPipelineSupport
Abstract Value Members
-
abstract
val
accessToken: AccessToken
- Definition Classes
- TokenProvider
-
abstract
val
consumerToken: ConsumerToken
- Definition Classes
- TokenProvider
-
implicit abstract
def
system: ActorSystem
- Definition Classes
- ActorSystemProvider
Concrete Value Members
-
final
def
!=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
##(): Int
- Definition Classes
- AnyRef → Any
-
final
def
==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
val
Delete: OAuthRequestBuilder
- Definition Classes
- OAuthClient → RequestBuilding
-
val
Get: OAuthRequestBuilder
- Definition Classes
- OAuthClient → RequestBuilding
-
val
Head: OAuthRequestBuilder
- Definition Classes
- OAuthClient → RequestBuilding
-
val
Options: OAuthRequestBuilder
- Definition Classes
- OAuthClient → RequestBuilding
-
val
Patch: OAuthRequestBuilder
- Definition Classes
- OAuthClient → RequestBuilding
-
val
Post: OAuthRequestBuilder
- Definition Classes
- OAuthClient → RequestBuilding
-
val
Put: OAuthRequestBuilder
- Definition Classes
- OAuthClient → RequestBuilding
-
lazy val
accessTokenKey: String
- Definition Classes
- Configurations
-
lazy val
accessTokenSecret: String
- Definition Classes
- Configurations
-
def
addCredentials(credentials: HttpCredentials): RequestTransformer
- Definition Classes
- RequestBuilding
-
def
addHeader(headerName: String, headerValue: String): RequestTransformer
- Definition Classes
- RequestBuilding
-
def
addHeader(header: HttpHeader): RequestTransformer
- Definition Classes
- RequestBuilding
-
def
addHeaders(first: HttpHeader, more: HttpHeader*): RequestTransformer
- Definition Classes
- RequestBuilding
-
val
apiTwitterUrl: String
- Definition Classes
- Configurations
-
final
def
asInstanceOf[T0]: T0
- Definition Classes
- Any
-
def
clone(): AnyRef
- Attributes
- protected[java.lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
def
connection(implicit request: HttpRequest): Flow[HttpRequest, HttpResponse, Future[OutgoingConnection]]
- Attributes
- protected
- Definition Classes
- CommonClient
-
lazy val
consumerTokenKey: String
- Definition Classes
- Configurations
-
lazy val
consumerTokenSecret: String
- Definition Classes
- Configurations
-
def
createDirectMessageAsTweet(message: String, screen_name: String, in_reply_to_status_id: Option[Long] = None, possibly_sensitive: Boolean = false, latitude: Option[Long] = None, longitude: Option[Long] = None, place_id: Option[String] = None, display_coordinates: Boolean = false, trim_user: Boolean = false, media_ids: Seq[Long] = Seq.empty): Future[Tweet]
Sends a direct message to a specified user.
Sends a direct message to a specified user. For more information see https://dev.twitter.com/rest/reference/post/statuses/update.
- message
: The text of your direct message.
- screen_name
: : The screen name of the user that should receive the message. Helpful for disambiguating when a valid screen name is also a user ID.
- in_reply_to_status_id
: Optional, by default it is
None
. The ID of an existing status that the update is in reply to. Note that this parameter will be ignored unless the author of the tweet this parameter references is mentioned within the status text. Therefore, you must include @username, where username is the author of the referenced tweet, within the update.- possibly_sensitive
: By default it is
false
. If you upload Tweet media that might be considered sensitive content such as nudity, violence, or medical procedures, you should set this value totrue
.- latitude
: Optional, by default it is
None
. The latitude of the location this tweet refers to. This parameter will be ignored unless it is inside the range -90.0 to +90.0 (North is positive) inclusive. It will also be ignored if there isn’t a correspondinglongitude
parameter.- longitude
: Optional, by default is
None
. The longitude of the location this tweet refers to. The valid ranges for longitude is -180.0 to +180.0 (East is positive) inclusive. This parameter will be ignored if outside that range, if it is not a number, if geo_enabled is disabled, or if there not a correspondinglatitude
parameter.- place_id
: Optional, by default it is
None
. A place in the world identified by an id.- display_coordinates
: By default it is
false
. Whether or not to put a pin on the exact coordinates a tweet has been sent from.- trim_user
: By default it is
false
. When set totrue
, each tweet returned in a timeline will include a user object including only the status authors numerical ID. Set this parameter tofalse
to receive the complete user object.- media_ids
: By default it is an empty sequence. A list of media_ids to associate with the Tweet. You may include up to 4 photos or 1 animated GIF or 1 video in a Tweet.
- returns
: The representation of the created direct message.
-
def
createTweet(status: String, in_reply_to_status_id: Option[Long] = None, possibly_sensitive: Boolean = false, latitude: Option[Long] = None, longitude: Option[Long] = None, place_id: Option[String] = None, display_coordinates: Boolean = false, trim_user: Boolean = false, media_ids: Seq[Long] = Seq.empty): Future[Tweet]
Updates the authenticating user’s current status, also known as Tweeting.
Updates the authenticating user’s current status, also known as Tweeting. For each update attempt, the update text is compared with the authenticating user’s recent Tweets. Any attempt that would result in duplication will be blocked, resulting in a
TwitterException
error. Therefore, a user cannot submit the same status twice in a row. For more information see https://dev.twitter.com/rest/reference/post/statuses/update.- status
: The text of your status update, typically up to 140 characters.
- in_reply_to_status_id
: Optional, by default it is
None
. The ID of an existing status that the update is in reply to. Note that this parameter will be ignored unless the author of the tweet this parameter references is mentioned within the status text. Therefore, you must include @username, where username is the author of the referenced tweet, within the update.- possibly_sensitive
: By default it is
false
. If you upload Tweet media that might be considered sensitive content such as nudity, violence, or medical procedures, you should set this value totrue
.- latitude
: Optional, by default it is
None
. The latitude of the location this tweet refers to. This parameter will be ignored unless it is inside the range -90.0 to +90.0 (North is positive) inclusive. It will also be ignored if there isn’t a correspondinglongitude
parameter.- longitude
: Optional, by default is
None
. The longitude of the location this tweet refers to. The valid ranges for longitude is -180.0 to +180.0 (East is positive) inclusive. This parameter will be ignored if outside that range, if it is not a number, if geo_enabled is disabled, or if there not a correspondinglatitude
parameter.- place_id
: Optional, by default it is
None
. A place in the world identified by an id.- display_coordinates
: By default it is
false
. Whether or not to put a pin on the exact coordinates a tweet has been sent from.- trim_user
: By default it is
false
. When set totrue
, each tweet returned in a timeline will include a user object including only the status authors numerical ID. Set this parameter tofalse
to receive the complete user object.- media_ids
: By default it is an empty sequence. A list of media_ids to associate with the Tweet. You may include up to 4 photos or 1 animated GIF or 1 video in a Tweet.
- returns
: The representation of the created tweet.
-
def
deleteTweet(id: Long, trim_user: Boolean = false): Future[Tweet]
Destroys the status specified by the required ID parameter.
Destroys the status specified by the required ID parameter. The authenticating user must be the author of the specified status. Returns the destroyed status if successful. For more information see https://dev.twitter.com/rest/reference/post/statuses/destroy/%3Aid.
- id
: The numerical ID of the desired status.
- trim_user
: By default it is
false
. When set totrue
, each tweet returned in a timeline will include a user object including only the status authors numerical ID. Set this parameter tofalse
to receive the complete user object.- returns
: The representation of the deleted tweet.
-
final
def
eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
def
equals(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
implicit
val
executionContext: ExecutionContext
- Definition Classes
- ActorContextExtractor → ExecutionContextProvider
-
def
finalize(): Unit
- Attributes
- protected[java.lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( classOf[java.lang.Throwable] )
-
final
def
getClass(): Class[_]
- Definition Classes
- AnyRef → Any
-
def
getTweet(id: Long, trim_user: Boolean = false, include_my_retweet: Boolean = false, include_entities: Boolean = true): Future[Tweet]
Returns a single Tweet, specified by the id parameter.
Returns a single Tweet, specified by the id parameter. The Tweet’s author will also be embedded within the tweet. For more information see https://dev.twitter.com/rest/reference/get/statuses/show/%3Aid.
- id
: The numerical ID of the desired status.
- trim_user
: By default it is
false
. When set totrue
, each tweet returned in a timeline will include a user object including only the status authors numerical ID. Set this parameter tofalse
to receive the complete user object.- include_my_retweet
: By default it is
false
. When set totrue
, any Tweets returned that have been retweeted by the authenticating user will include an additionalcurrent_user_retweet
node, containing the ID of the source status for the retweet.- include_entities
: By default it is
true
. When set tofalse
, The parameters node will be disincluded when set to false.- returns
: The representation of the tweet.
-
def
hashCode(): Int
- Definition Classes
- AnyRef → Any
-
implicit
def
header2AddHeader(header: HttpHeader): RequestTransformer
- Definition Classes
- RequestBuilding
-
def
homeTimeline(count: Int = 20, since_id: Option[Long] = None, max_id: Option[Long] = None, trim_user: Boolean = false, exclude_replies: Boolean = false, contributor_details: Boolean = false, include_entities: Boolean = true): Future[Seq[Tweet]]
Returns a collection of the most recent Tweets and retweets posted by the authenticating user and the users they follow.
Returns a collection of the most recent Tweets and retweets posted by the authenticating user and the users they follow. The home timeline is central to how most users interact with the Twitter service. Up to 800 Tweets are obtainable on the home timeline. It is more volatile for users that follow many users or follow users who tweet frequently. For more information see https://dev.twitter.com/rest/reference/get/statuses/home_timeline.
- count
: By default it is
20
. Specifies the number of records to retrieve. Must be less than or equal to 200. The value of count is best thought of as a limit to the number of tweets to return because suspended or deleted content is removed after the count has been applied.- since_id
: Optional, by default it is
None
. Returns results with an ID greater than (that is, more recent than) the specified ID. There are limits to the number of Tweets which can be accessed through the API. If the limit of Tweets has occured since thesince_id
, thesince_id
will be forced to the oldest ID available.- max_id
: Optional, by default it is
None
. Returns results with an ID less than (that is, older than) or equal to the specified ID.- trim_user
: By default it is
false
. When set totrue
, each tweet returned in a timeline will include a user object including only the status authors numerical ID. Set this parameter tofalse
to receive the complete user object.- exclude_replies
: By default it is
false
. This parameter will prevent replies from appearing in the returned timeline. Using exclude_replies with the count parameter will mean you will receive up-to count tweets — this is because the count parameter retrieves that many tweets before filtering out retweets and replies.- contributor_details
: By default it is
false
. When set totrue
, this parameter enhances the contributors element of the status response to include the screen_name of the contributor. When set tofalse
, only the user_id of the contributor is included.- include_entities
: By default it is
true
. When set tofalse
, The parameters node will be disincluded when set to false.- returns
: The sequence of tweets.
-
final
def
isInstanceOf[T0]: Boolean
- Definition Classes
- Any
-
implicit
lazy val
json4sFormats: Formats
- Definition Classes
- JsonSupport
-
implicit
def
json4sMarshaller[A <: AnyRef](implicit serialization: Serialization, formats: Formats, shouldWritePretty: ShouldWritePretty): ToEntityMarshaller[A]
- Definition Classes
- Json4sSupport
-
implicit
def
json4sUnmarshaller[A](implicit arg0: Manifest[A], serialization: Serialization, formats: Formats): FromEntityUnmarshaller[A]
- Definition Classes
- Json4sSupport
-
implicit
val
log: Logger
- Definition Classes
- ActorContextExtractor
-
def
logRequest(logFun: (HttpRequest) ⇒ Unit): (HttpRequest) ⇒ HttpRequest
- Definition Classes
- RequestBuilding
-
def
logRequest(log: LoggingAdapter, level: LogLevel): (HttpRequest) ⇒ HttpRequest
- Definition Classes
- RequestBuilding
-
def
logRequest(implicit request: HttpRequest): HttpRequest
- Definition Classes
- CommonClient
-
def
logRequestResponse(requestStartTime: Long)(implicit request: HttpRequest): (HttpResponse) ⇒ HttpResponse
- Definition Classes
- CommonClient
-
def
logValue[T](logFun: (T) ⇒ Unit): (T) ⇒ T
- Definition Classes
- TransformerPipelineSupport
-
def
logValue[T](log: LoggingAdapter, level: LogLevel): (T) ⇒ T
- Definition Classes
- TransformerPipelineSupport
-
def
mapHeaders(f: (Seq[HttpHeader]) ⇒ Seq[HttpHeader]): RequestTransformer
- Definition Classes
- RequestBuilding
-
implicit
val
materializer: ActorMaterializer
- Definition Classes
- ActorSystemProvider
-
val
mediaTwitterUrl: String
- Definition Classes
- Configurations
-
def
mentionsTimeline(count: Int = 200, since_id: Option[Long] = None, max_id: Option[Long] = None, trim_user: Boolean = false, contributor_details: Boolean = false, include_entities: Boolean = true): Future[Seq[Tweet]]
Returns the 20 most recent mentions (tweets containing a users’s @screen_name) for the authenticating user.
Returns the 20 most recent mentions (tweets containing a users’s @screen_name) for the authenticating user. The timeline returned is the equivalent of the one seen when you view your mentions on twitter.com. This method can only return up to 800 tweets. For more information see https://dev.twitter.com/rest/reference/get/statuses/mentions_timeline.
- count
: By default it is
200
. Specifies the number of tweets to try and retrieve, up to a maximum of 200. The value of count is best thought of as a limit to the number of tweets to return because suspended or deleted content is removed after the count has been applied.- since_id
: Optional, by default it is
None
. Returns results with an ID greater than (that is, more recent than) the specified ID. There are limits to the number of Tweets which can be accessed through the API. If the limit of Tweets has occured since thesince_id
, thesince_id
will be forced to the oldest ID available.- max_id
: Optional, by default it is
None
. Returns results with an ID less than (that is, older than) or equal to the specified ID.- trim_user
: By default it is
false
. When set totrue
, each tweet returned in a timeline will include a user object including only the status authors numerical ID. Set this parameter tofalse
to receive the complete user object.- contributor_details
: By default it is
false
. When set totrue
, this parameter enhances the contributors element of the status response to include the screen_name of the contributor. When set tofalse
, only the user_id of the contributor is included.- include_entities
: By default it is
true
. The parameters node will be disincluded when set tofalse
.- returns
: The sequence of tweets.
-
final
def
ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
final
def
notify(): Unit
- Definition Classes
- AnyRef
-
final
def
notifyAll(): Unit
- Definition Classes
- AnyRef
-
lazy val
oauthProvider: OAuth2Provider
- Attributes
- protected
- Definition Classes
- OAuthClient
-
def
oembedTweetById(id: Long, max_width: Option[Int] = None, hide_media: Boolean = false, hide_thread: Boolean = false, hide_tweet: Boolean = false, omit_script: Boolean = false, alignment: Alignment = Alignment.None, related: Seq[String] = Seq.empty, language: Language = Language.English, widget_type: Option[WidgetType] = None): Future[OEmbedTweet]
Returns a single Tweet, specified by the Tweet ID, in an oEmbed-compatible format.
Returns a single Tweet, specified by the Tweet ID, in an oEmbed-compatible format. The returned HTML snippet will be automatically recognized as an Embedded Tweet when Twitter’s widget JavaScript is included on the page. The oEmbed endpoint allows customization of the final appearance of an Embedded Tweet by setting the corresponding properties in HTML markup to be interpreted by Twitter’s JavaScript bundled with the HTML response by default. The format of the returned markup may change over time as Twitter adds new features or adjusts its Tweet representation. The Tweet fallback markup is meant to be cached on your servers for up to the suggested cache lifetime specified in the cache_age. For more information see https://dev.twitter.com/rest/reference/get/statuses/oembed.
- id
: The numerical ID of the desired status.
- max_width
: Optional, by default it is
None
. The maximum width of a rendered Tweet in whole pixels. This value must be between 220 and 550 inclusive. A supplied value under or over the allowed range will be returned as the minimum or maximum supported width respectively; the reset width value will be reflected in the returned width property. Note that Twitter does not support the oEmbed max_height parameter. Tweets are fundamentally text, and are therefore of unpredictable height that cannot be scaled like an image or video. Relatedly, the oEmbed response will not provide a value for height. Implementations that need consistent heights for Tweets should refer to the hide_thread and hide_media parameters below.- hide_media
: By default, it is
false
. When set totrue
, links in a Tweet are not expanded to photo, video, or link previews.- hide_thread
: By default, it is
false
. When set totrue
, a collapsed version of the previous Tweet in a conversation thread will not be displayed when the requested Tweet is in reply to another Tweet.- hide_tweet
: By default, it is
false
. Applies to video type only. Set totrue
to link directly to the Tweet URL instead of displaying a Tweet overlay when a viewer clicks on the Twitter bird logo.- omit_script
: By default, it is
false
. When set totrue
, the<script>
responsible for loading widgets.js will not be returned. Your webpages should include their own reference to widgets.js for use across all Twitter widgets including Embedded Tweets.- alignment
: By default it is
None
, meaning no alignment styles are specified for the Tweet. Specifies whether the embedded Tweet should be floated left, right, or center in the page relative to the parent element.- related
: By default it is an empty sequence. A sequence of Twitter usernames related to your content. This value will be forwarded to Tweet action intents if a viewer chooses to reply, favorite, or retweet the embedded Tweet.
- language
: By default it is
English
. Request returned HTML and a rendered Tweet in the specified Twitter language supported by embedded Tweets.- widget_type
: Optional, by default it is
None
. Set tovideo
to return a Twitter Video embed for the given Tweet.- returns
: The representation of embedded tweet.
-
def
oembedTweetByUrl(url: String, max_width: Option[Int] = None, hide_media: Boolean = false, hide_thread: Boolean = false, hide_tweet: Boolean = false, omit_script: Boolean = false, alignment: Alignment = Alignment.None, related: Seq[String] = Seq.empty, language: Language = Language.English, widget_type: Option[WidgetType] = None): Future[OEmbedTweet]
Returns a single Tweet, specified by a Tweet web URL, in an oEmbed-compatible format.
Returns a single Tweet, specified by a Tweet web URL, in an oEmbed-compatible format. The returned HTML snippet will be automatically recognized as an Embedded Tweet when Twitter’s widget JavaScript is included on the page. The oEmbed endpoint allows customization of the final appearance of an Embedded Tweet by setting the corresponding properties in HTML markup to be interpreted by Twitter’s JavaScript bundled with the HTML response by default. The format of the returned markup may change over time as Twitter adds new features or adjusts its Tweet representation. The Tweet fallback markup is meant to be cached on your servers for up to the suggested cache lifetime specified in the cache_age. For more information see https://dev.twitter.com/rest/reference/get/statuses/oembed.
- url
: The URL of the Tweet to be embedded.
- max_width
: Optional, by default it is
None
. The maximum width of a rendered Tweet in whole pixels. This value must be between 220 and 550 inclusive. A supplied value under or over the allowed range will be returned as the minimum or maximum supported width respectively; the reset width value will be reflected in the returned width property. Note that Twitter does not support the oEmbed max_height parameter. Tweets are fundamentally text, and are therefore of unpredictable height that cannot be scaled like an image or video. Relatedly, the oEmbed response will not provide a value for height. Implementations that need consistent heights for Tweets should refer to the hide_thread and hide_media parameters below.- hide_media
: By default, it is
false
. When set totrue
, links in a Tweet are not expanded to photo, video, or link previews.- hide_thread
: By default, it is
false
. When set totrue
, a collapsed version of the previous Tweet in a conversation thread will not be displayed when the requested Tweet is in reply to another Tweet.- hide_tweet
: By default, it is
false
. Applies to video type only. Set totrue
to link directly to the Tweet URL instead of displaying a Tweet overlay when a viewer clicks on the Twitter bird logo.- omit_script
: By default, it is
false
. When set totrue
, the<script>
responsible for loading widgets.js will not be returned. Your webpages should include their own reference to widgets.js for use across all Twitter widgets including Embedded Tweets.- alignment
: By default it is
None
, meaning no alignment styles are specified for the Tweet. Specifies whether the embedded Tweet should be floated left, right, or center in the page relative to the parent element.- related
: By default it is an empty sequence. A sequence of Twitter usernames related to your content. This value will be forwarded to Tweet action intents if a viewer chooses to reply, favorite, or retweet the embedded Tweet.
- language
: By default it is
English
. Request returned HTML and a rendered Tweet in the specified Twitter language supported by embedded Tweets.- widget_type
: Optional, by default it is
None
. Set tovideo
to return a Twitter Video embed for the given Tweet.- returns
: The representation of embedded tweet.
-
def
parseFailedResponse(response: HttpResponse): Future[TwitterException]
- Attributes
- protected
- Definition Classes
- CommonClient
-
def
removeHeader(clazz: Class[_]): RequestTransformer
- Definition Classes
- RequestBuilding
-
def
removeHeader[T <: HttpHeader](implicit arg0: ClassTag[T]): RequestTransformer
- Definition Classes
- RequestBuilding
-
def
removeHeader(headerName: String): RequestTransformer
- Definition Classes
- RequestBuilding
-
def
removeHeaders(names: String*): RequestTransformer
- Definition Classes
- RequestBuilding
-
def
retweet(id: Long, trim_user: Boolean = false): Future[Tweet]
Retweets a tweet.
Retweets a tweet. Returns the original tweet with retweet details embedded. For more information see https://dev.twitter.com/rest/reference/post/statuses/retweet/%3Aid.
- id
: The numerical ID of the desired status.
- trim_user
: By default it is
false
. When set totrue
, each tweet returned in a timeline will include a user object including only the status authors numerical ID. Set this parameter tofalse
to receive the complete user object.- returns
: The representation of the original tweet with retweet details embedded.
-
def
retweeterIds(id: Long, count: Int = 100, cursor: Long = 1): Future[UserIds]
Returns a collection of up to 100 user IDs belonging to users who have retweeted the tweet specified by the id parameter.
Returns a collection of up to 100 user IDs belonging to users who have retweeted the tweet specified by the id parameter. For more information see https://dev.twitter.com/rest/reference/get/statuses/retweeters/ids.
- id
: The numerical ID of the desired status.
- count
: By default, it is
100
. Specifies the number of ids to retrieve. Must be less than or equal to 100.- cursor
: By default it is
-1
, which is the first “page”. Breaks the results into pages. Provide values as returned in the response body’snext_cursor
andprevious_cursor
attributes to page back and forth in the list.- returns
: The representation of the retweeter ids.
-
def
retweeterStringifiedIds(id: Long, count: Int = 100, cursor: Long = 1): Future[UserStringifiedIds]
Returns a collection of up to 100 user stringified IDs belonging to users who have retweeted the tweet specified by the id parameter.
Returns a collection of up to 100 user stringified IDs belonging to users who have retweeted the tweet specified by the id parameter. For more information see https://dev.twitter.com/rest/reference/get/statuses/retweeters/ids.
- id
: The numerical ID of the desired status.
- count
: By default, it is
100
. Specifies the number of ids to retrieve. Must be less than or equal to 100.- cursor
: By default it is
-1
, which is the first “page”. Breaks the results into pages. Provide values as returned in the response body’snext_cursor
andprevious_cursor
attributes to page back and forth in the list.- returns
: The representation of the retweeter stringified ids.
-
def
retweets(id: Long, count: Int = 100, trim_user: Boolean = false): Future[Seq[Tweet]]
Returns a collection of the 100 most recent retweets of the tweet specified by the id parameter.
Returns a collection of the 100 most recent retweets of the tweet specified by the id parameter. For more information see https://dev.twitter.com/rest/reference/get/statuses/retweets/%3Aid.
- id
: The numerical ID of the desired status.
- count
: By default it is
100
. Specifies the number of records to retrieve. Must be less than or equal to 100.- trim_user
: By default it is
false
. When set totrue
, each tweet returned in a timeline will include a user object including only the status authors numerical ID. Set this parameter tofalse
to receive the complete user object.- returns
: The sequence of tweets.
-
def
retweetsOfMe(count: Int = 20, since_id: Option[Long] = None, max_id: Option[Long] = None, trim_user: Boolean = false, exclude_replies: Boolean = false, contributor_details: Boolean = false, include_entities: Boolean = true): Future[Seq[Tweet]]
Returns the most recent tweets authored by the authenticating user that have been retweeted by others.
Returns the most recent tweets authored by the authenticating user that have been retweeted by others. For more information see https://dev.twitter.com/rest/reference/get/statuses/retweets_of_me.
- count
: By default it is
20
. Specifies the number of records to retrieve. Must be less than or equal to 100.- since_id
: Optional, by default it is
None
. Returns results with an ID greater than (that is, more recent than) the specified ID. There are limits to the number of Tweets which can be accessed through the API. If the limit of Tweets has occured since thesince_id
, thesince_id
will be forced to the oldest ID available.- max_id
: Optional, by default it is
None
. Returns results with an ID less than (that is, older than) or equal to the specified ID.- trim_user
: By default it is
false
. When set totrue
, each tweet returned in a timeline will include a user object including only the status authors numerical ID. Set this parameter tofalse
to receive the complete user object.- exclude_replies
: By default it is
false
. This parameter will prevent replies from appearing in the returned timeline. Using exclude_replies with the count parameter will mean you will receive up-to count tweets — this is because the count parameter retrieves that many tweets before filtering out retweets and replies.- contributor_details
: By default it is
false
. When set totrue
, this parameter enhances the contributors element of the status response to include the screen_name of the contributor. When set tofalse
, only the user_id of the contributor is included.- include_entities
: By default it is
true
. When set tofalse
, The parameters node will be disincluded when set to false.- returns
: The sequence of tweets.
-
def
sendAndReceive[T](request: HttpRequest, f: (HttpResponse) ⇒ Future[T]): Future[T]
- Attributes
- protected
- Definition Classes
- RestClient
-
def
sendReceiveAs[T](httpRequest: HttpRequest)(implicit arg0: Manifest[T]): Future[T]
- Definition Classes
- RestClient
-
implicit
val
serialization: Serialization.type
- Definition Classes
- JsonSupport
-
val
siteStreamingTwitterUrl: String
- Definition Classes
- Configurations
-
val
statusStreamingTwitterUrl: String
- Definition Classes
- Configurations
-
final
def
synchronized[T0](arg0: ⇒ T0): T0
- Definition Classes
- AnyRef
-
def
toString(): String
- Definition Classes
- AnyRef → Any
-
def
tweetLookup(ids: Seq[Long], include_entities: Boolean = true, trim_user: Boolean = false): Future[Seq[LookupTweet]]
Returns fully-hydrated tweet objects for up to 100 tweets per request, as specified by sequence of values passed to the id parameter.
Returns fully-hydrated tweet objects for up to 100 tweets per request, as specified by sequence of values passed to the id parameter. This method is especially useful to get the details (hydrate) a collection of Tweet IDs. Tweets that do not exist or cannot be viewed by the current user will not be returned. For more information see https://dev.twitter.com/rest/reference/get/statuses/lookup.
- ids
: A sequence of tweet IDs, up to 100 are allowed in a single request.
- include_entities
: By default it is
true
. The parameters node will be disincluded when set tofalse
.- trim_user
: By default it is
false
. When set totrue
, each tweet returned in a timeline will include a user object including only the status authors numerical ID. Set this parameter tofalse
to receive the complete user object.- returns
: The representation of the lookup tweets.
-
def
tweetLookup(ids: Long*): Future[Seq[LookupTweet]]
Returns fully-hydrated tweet objects for up to 100 tweets per request, as specified by sequence of values passed to the id parameter.
Returns fully-hydrated tweet objects for up to 100 tweets per request, as specified by sequence of values passed to the id parameter. This method is especially useful to get the details (hydrate) a collection of Tweet IDs. Tweets that do not exist or cannot be viewed by the current user will not be returned. For more information see https://dev.twitter.com/rest/reference/get/statuses/lookup.
- ids
: A sequence of tweet IDs, up to 100 are allowed in a single request.
- returns
: The representation of the lookup tweets.
-
def
tweetLookupMapped(ids: Seq[Long], include_entities: Boolean = true, trim_user: Boolean = false): Future[LookupMapped]
Returns fully-hydrated tweet objects for up to 100 tweets per request, as specified by sequence of values passed to the id parameter.
Returns fully-hydrated tweet objects for up to 100 tweets per request, as specified by sequence of values passed to the id parameter. This method is especially useful to get the details (hydrate) a collection of Tweet IDs. Tweets ids will be used to create a map using the tweet id as key and tweet as corresponding body. For more information see https://dev.twitter.com/rest/reference/get/statuses/lookup.
- ids
: A sequence of tweet IDs, up to 100 are allowed in a single request.
- include_entities
: By default it is
true
. The parameters node will be disincluded when set tofalse
.- trim_user
: By default it is
false
. When set totrue
, each tweet returned in a timeline will include a user object including only the status authors numerical ID. Set this parameter tofalse
to receive the complete user object.- returns
: The representation of the lookup tweets mapped by id.
-
def
tweetLookupMapped(ids: Long*): Future[LookupMapped]
Returns fully-hydrated tweet objects for up to 100 tweets per request, as specified by sequence of values passed to the id parameter.
Returns fully-hydrated tweet objects for up to 100 tweets per request, as specified by sequence of values passed to the id parameter. This method is especially useful to get the details (hydrate) a collection of Tweet IDs. Tweets ids will be used to create a map using the tweet id as key and tweet as corresponding body. For more information see https://dev.twitter.com/rest/reference/get/statuses/lookup.
- ids
: A sequence of tweet IDs, up to 100 are allowed in a single request.
- returns
: The representation of the lookup tweets mapped by id.
-
val
twitterVersion: String
- Definition Classes
- Configurations
-
def
unmarshal[T](requestStartTime: Long, f: (HttpResponse) ⇒ Future[T])(implicit request: HttpRequest, response: HttpResponse): Future[T]
- Attributes
- protected
- Definition Classes
- CommonClient
-
val
userStreamingTwitterUrl: String
- Definition Classes
- Configurations
-
def
userTimelineForUser(screen_name: String, since_id: Option[Long] = None, count: Int = 200, max_id: Option[Long] = None, trim_user: Boolean = false, exclude_replies: Boolean = false, contributor_details: Boolean = false, include_rts: Boolean = true): Future[Seq[Tweet]]
Returns a collection of the most recent Tweets posted by the user indicated.
Returns a collection of the most recent Tweets posted by the user indicated. User timelines belonging to protected users may only be requested when the authenticated user either “owns” the timeline or is an approved follower of the owner. The timeline returned is the equivalent of the one seen when you view a user’s profile on twitter.com. This method can only return up to 3,200 of a user’s most recent Tweets. Native retweets of other statuses by the user is included in this total, regardless of whether
include_rts
is set to false when requesting this resource. For more information see https://dev.twitter.com/rest/reference/get/statuses/user_timeline.- screen_name
: The screen name of the user for whom to return results for.
- since_id
: Optional, by default it is
None
. Returns results with an ID greater than (that is, more recent than) the specified ID. There are limits to the number of Tweets which can be accessed through the API. If the limit of Tweets has occured since thesince_id
, thesince_id
will be forced to the oldest ID available.- count
: By default it is
200
. Specifies the number of tweets to try and retrieve, up to a maximum of 200. The value of count is best thought of as a limit to the number of tweets to return because suspended or deleted content is removed after the count has been applied. We include retweets in the count, even ifinclude_rts
is not supplied. It is recommended you always sendinclude_rts
=true
when using this API method.- max_id
: Optional, by default it is
None
. Returns results with an ID less than (that is, older than) or equal to the specified ID.- trim_user
: By default it is
false
. When set totrue
, each tweet returned in a timeline will include a user object including only the status authors numerical ID. Set this parameter tofalse
to receive the complete user object.- exclude_replies
: By default it is
false
. This parameter will prevent replies from appearing in the returned timeline. Using exclude_replies with the count parameter will mean you will receive up-to count tweets — this is because the count parameter retrieves that many tweets before filtering out retweets and replies.- contributor_details
: By default it is
false
. When set totrue
, this parameter enhances the contributors element of the status response to include the screen_name of the contributor. When set tofalse
, only the user_id of the contributor is included.- include_rts
: By default it is
true
. When set tofalse
, the timeline will strip any native retweets (though they will still count toward both the maximal length of the timeline and the slice selected by the count parameter). Note: If you’re using thetrim_user
parameter in conjunction withinclude_rts
, the retweets will still contain a full user object.- returns
: The sequence of tweets.
-
def
userTimelineForUserId(user_id: Long, since_id: Option[Long] = None, count: Int = 200, max_id: Option[Long] = None, trim_user: Boolean = false, exclude_replies: Boolean = false, contributor_details: Boolean = false, include_rts: Boolean = true): Future[Seq[Tweet]]
Returns a collection of the most recent Tweets posted by the user id indicated.
Returns a collection of the most recent Tweets posted by the user id indicated. User timelines belonging to protected users may only be requested when the authenticated user either “owns” the timeline or is an approved follower of the owner. The timeline returned is the equivalent of the one seen when you view a user’s profile on twitter.com. This method can only return up to 3,200 of a user’s most recent Tweets. Native retweets of other statuses by the user is included in this total, regardless of whether
include_rts
is set to false when requesting this resource. For more information see https://dev.twitter.com/rest/reference/get/statuses/user_timeline.- user_id
: The ID of the user for whom to return results for.
- since_id
: Optional, by default it is
None
. Returns results with an ID greater than (that is, more recent than) the specified ID. There are limits to the number of Tweets which can be accessed through the API. If the limit of Tweets has occured since thesince_id
, thesince_id
will be forced to the oldest ID available.- count
: By default it is
200
. Specifies the number of tweets to try and retrieve, up to a maximum of 200. The value of count is best thought of as a limit to the number of tweets to return because suspended or deleted content is removed after the count has been applied. We include retweets in the count, even ifinclude_rts
is not supplied. It is recommended you always sendinclude_rts
=true
when using this API method.- max_id
: Optional, by default it is
None
. Returns results with an ID less than (that is, older than) or equal to the specified ID.- trim_user
: By default it is
false
. When set totrue
, each tweet returned in a timeline will include a user object including only the status authors numerical ID. Set this parameter tofalse
to receive the complete user object.- exclude_replies
: By default it is
false
. This parameter will prevent replies from appearing in the returned timeline. Using exclude_replies with the count parameter will mean you will receive up-to count tweets — this is because the count parameter retrieves that many tweets before filtering out retweets and replies.- contributor_details
: By default it is
false
. When set totrue
, this parameter enhances the contributors element of the status response to include the screen_name of the contributor. When set tofalse
, only the user_id of the contributor is included.- include_rts
: By default it is
true
. When set tofalse
, the timeline will strip any native retweets (though they will still count toward both the maximal length of the timeline and the slice selected by the count parameter). Note: If you’re using thetrim_user
parameter in conjunction withinclude_rts
, the retweets will still contain a full user object.- returns
: The sequence of tweets.
-
final
def
wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
val
withLogRequest: Boolean
- Definition Classes
- RestClient → CommonClient
-
val
withLogRequestResponse: Boolean
- Definition Classes
- RestClient → CommonClient
-
def
withOAuthHeader: (HttpRequest) ⇒ Future[HttpRequest]
- Definition Classes
- OAuthClient
-
def
withSimpleOAuthHeader: (HttpRequest) ⇒ Future[HttpRequest]
- Definition Classes
- OAuthClient
Deprecated Value Members
-
def
getHomeTimeline(count: Int = 20, since_id: Option[Long] = None, max_id: Option[Long] = None, trim_user: Boolean = false, exclude_replies: Boolean = false, contributor_details: Boolean = false, include_entities: Boolean = true): Future[Seq[Tweet]]
- Annotations
- @deprecated
- Deprecated
(Since version 2.2) use homeTimeline instead
-
def
getMentionsTimeline(count: Int = 200, since_id: Option[Long] = None, max_id: Option[Long] = None, trim_user: Boolean = false, contributor_details: Boolean = false, include_entities: Boolean = true): Future[Seq[Tweet]]
- Annotations
- @deprecated
- Deprecated
(Since version 2.2) use mentionsTimeline instead
-
def
getOembedTweetById(id: Long, max_width: Option[Int] = None, hide_media: Boolean = false, hide_thread: Boolean = false, hide_tweet: Boolean = false, omit_script: Boolean = false, alignment: Alignment = Alignment.None, related: Seq[String] = Seq.empty, language: Language = Language.English, widget_type: Option[WidgetType] = None): Future[OEmbedTweet]
- Annotations
- @deprecated
- Deprecated
(Since version 2.2) use oembedTweetById instead
-
def
getOembedTweetByUrl(url: String, max_width: Option[Int] = None, hide_media: Boolean = false, hide_thread: Boolean = false, hide_tweet: Boolean = false, omit_script: Boolean = false, alignment: Alignment = Alignment.None, related: Seq[String] = Seq.empty, language: Language = Language.English, widget_type: Option[WidgetType] = None): Future[OEmbedTweet]
- Annotations
- @deprecated
- Deprecated
(Since version 2.2) use oembedTweetByUrl instead
-
def
getRetweeterIds(id: Long, count: Int = 100, cursor: Long = 1): Future[UserIds]
- Annotations
- @deprecated
- Deprecated
(Since version 2.2) use retweeterIds instead
-
def
getRetweeterStringifiedIds(id: Long, count: Int = 100, cursor: Long = 1): Future[UserStringifiedIds]
- Annotations
- @deprecated
- Deprecated
(Since version 2.2) use retweeterStringifiedIds instead
-
def
getRetweets(id: Long, count: Int = 100, trim_user: Boolean = false): Future[Seq[Tweet]]
- Annotations
- @deprecated
- Deprecated
(Since version 2.2) use retweets instead
-
def
getRetweetsOfMe(count: Int = 20, since_id: Option[Long] = None, max_id: Option[Long] = None, trim_user: Boolean = false, exclude_replies: Boolean = false, contributor_details: Boolean = false, include_entities: Boolean = true): Future[Seq[Tweet]]
- Annotations
- @deprecated
- Deprecated
(Since version 2.2) use retweetsOfMe instead
-
def
getTweetLookup(ids: Seq[Long], include_entities: Boolean = true, trim_user: Boolean = false): Future[Seq[LookupTweet]]
- Annotations
- @deprecated
- Deprecated
(Since version 2.2) use tweetLookup instead
-
def
getTweetLookup(ids: Long*): Future[Seq[LookupTweet]]
- Annotations
- @deprecated
- Deprecated
(Since version 2.2) use tweetLookup instead
-
def
getTweetLookupMapped(ids: Seq[Long], include_entities: Boolean = true, trim_user: Boolean = false): Future[LookupMapped]
- Annotations
- @deprecated
- Deprecated
(Since version 2.2) use tweetLookupMapped instead
-
def
getTweetLookupMapped(ids: Long*): Future[LookupMapped]
- Annotations
- @deprecated
- Deprecated
(Since version 2.2) use tweetLookupMapped instead
-
def
getUserTimelineForUser(screen_name: String, since_id: Option[Long] = None, count: Int = 200, max_id: Option[Long] = None, trim_user: Boolean = false, exclude_replies: Boolean = false, contributor_details: Boolean = false, include_rts: Boolean = true): Future[Seq[Tweet]]
- Annotations
- @deprecated
- Deprecated
(Since version 2.2) use userTimelineForUser instead
-
def
getUserTimelineForUserId(user_id: Long, since_id: Option[Long] = None, count: Int = 200, max_id: Option[Long] = None, trim_user: Boolean = false, exclude_replies: Boolean = false, contributor_details: Boolean = false, include_rts: Boolean = true): Future[Seq[Tweet]]
- Annotations
- @deprecated
- Deprecated
(Since version 2.2) use userTimelineForUserId instead
-
def
tweet(status: String, in_reply_to_status_id: Option[Long] = None, possibly_sensitive: Boolean = false, latitude: Option[Long] = None, longitude: Option[Long] = None, place_id: Option[String] = None, display_coordinates: Boolean = false, trim_user: Boolean = false, media_ids: Seq[Long] = Seq.empty): Future[Tweet]
- Annotations
- @deprecated
- Deprecated
(Since version 2.2) use createTweet instead