\JTwitterStatuses
Twitter API Statuses class for the Joomla Platform.
Synopsis
class JTwitterStatuses
extends JTwitterObject
{
- // Inherited members from JTwitterObject
- protected JRegistry $options;
- protected JHttp $client;
- protected JTwitterOAuth $oauth;
- // methods
- public array getTweetById()
- public array getUserTimeline()
- public array tweet()
- public array getMentions()
- public array getRetweetsOfMe()
- public array getRetweeters()
- public array getRetweetsById()
- public array deleteTweet()
- public array retweet()
- public array tweetWithMedia()
- public array getOembed()
- // Inherited methods from JTwitterObject
- public void __construct()
- public void checkRateLimit()
- public string fetchUrl()
- public array getRateLimit()
- public array sendRequest()
- public mixed getOption()
- public JTwitterObject setOption()
Hierarchy
Extends
Members
protected
- $client — JHttp
- $oauth — JTwitterOAuth
- $options — JRegistry
Methods
public
- deleteTweet() — Method to delete the status specified by the required ID parameter.
- getMentions() — Method to retrieve the most recent mentions for the authenticating user.
- getOembed() — Method to get information allowing the creation of an embedded representation of a Tweet on third party sites.
- getRetweeters() — Method to show user objects of up to 100 members who retweeted the status.
- getRetweetsById() — Method to get up to 100 of the first retweets of a given tweet.
- getRetweetsOfMe() — Method to get the most recent tweets of the authenticated user that have been retweeted by others.
- getTweetById() — Method to get a single tweet with the given ID.
- getUserTimeline() — Method to retrieve the latest statuses from the specified user timeline.
- retweet() — Method to retweet a tweet.
- tweet() — Method to post a tweet.
- tweetWithMedia() — Method to post a tweet with media.
Inherited from JTwitterObject
public
- checkRateLimit() — Method to check the rate limit for the requesting IP address
- fetchUrl() — Method to build and return a full request URL for the request. This method will add appropriate pagination details if necessary and also prepend the API url to have a complete URL for the request.
- getOption() — Get an option from the JTwitterObject instance.
- getRateLimit() — Method to retrieve the rate limit for the requesting IP address
- sendRequest() — Method to send the request.
- setOption() — Set an option for the JTwitterObject instance.