\JTwitterUsers
Twitter API Users class for the Joomla Platform.
Synopsis
class JTwitterUsers
extends JTwitterObject
{
- // Inherited members from JTwitterObject
- protected JRegistry $options;
- protected JHttp $client;
- protected JTwitterOAuth $oauth;
- // methods
- public array getUsersLookup()
- public array getUserProfileBanner()
- public array searchUsers()
- public array getUser()
- public array getContributees()
- public array getContributors()
- public array getSuggestions()
- public array getSuggestionsSlug()
- public array getSuggestionsSlugMembers()
- // 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
- getContributees() — Method to get an array of users that the specified user can contribute to.
- getContributors() — Method to get an array of users who can contribute to the specified account.
- getSuggestions() — Method access to Twitter's suggested user list.
- getSuggestionsSlug() — method to access the users in a given category of the Twitter suggested user list.
- getSuggestionsSlugMembers() — Method to access the users in a given category of the Twitter suggested user list and return their most recent status if they are not a protected user.
- getUser() — Method to get extended information of a given user, specified by ID or screen name as per the required id parameter.
- getUserProfileBanner() — Method to access the profile banner in various sizes for the user with the indicated screen_name.
- getUsersLookup() — Method to get up to 100 users worth of extended information, specified by either ID, screen name, or combination of the two.
- searchUsers() — Method used to search for users
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.