\JTwitterFriends
Twitter API Friends class for the Joomla Platform.
Synopsis
class JTwitterFriends
extends JTwitterObject
{
- // Inherited members from JTwitterObject
- protected JRegistry $options;
- protected JHttp $client;
- protected JTwitterOAuth $oauth;
- // methods
- public array getFriendIds()
- public array getFriendshipDetails()
- public array getFollowerIds()
- public array getFriendshipsIncoming()
- public array getFriendshipsOutgoing()
- public array follow()
- public array unfollow()
- public array getFriendshipsLookup()
- public array updateFriendship()
- public array getFriendshipNoRetweetIds()
- // 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
- follow() — Allows the authenticating users to follow the user specified in the ID parameter.
- getFollowerIds() — Method to get an array of user IDs the specified user is followed by.
- getFriendIds() — Method to get an array of user IDs the specified user follows.
- getFriendshipDetails() — Method to display detailed friend information between two users.
- getFriendshipNoRetweetIds() — Method to get the user ids that currently authenticated user does not want to see retweets from.
- getFriendshipsIncoming() — Method to determine pending requests to follow the authenticating user.
- getFriendshipsLookup() — Method to get the relationship of the authenticating user to the comma separated list of up to 100 screen_names or user_ids provided.
- getFriendshipsOutgoing() — Method to determine every protected user for whom the authenticating user has a pending follow request.
- unfollow() — Allows the authenticating users to unfollow the user specified in the ID parameter.
- updateFriendship() — Allows one to enable or disable retweets and device notifications from the specified user.
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.