\JFacebookStatus
Facebook API Status class for the Joomla Platform.
Synopsis
class JFacebookStatus
extends JFacebookObject
{
- // Inherited members from JFacebookObject
- protected JRegistry $options;
- protected JHttp $client;
- protected JFacebookOAuth $oauth;
- // methods
- public mixed getStatus()
- public mixed getComments()
- public mixed createComment()
- public mixed deleteComment()
- public mixed getLikes()
- public mixed createLike()
- public mixed deleteLike()
- // Inherited methods from JFacebookObject
- public void __construct()
- protected string fetchUrl()
- public mixed sendRequest()
- public mixed get()
- public mixed getConnection()
- public mixed createConnection()
- public mixed deleteConnection()
- public JFacebookObject setOAuth()
- public JFacebookOAuth getOAuth()
Hierarchy
Extends
Members
protected
- $client — JHttp
- $oauth — JFacebookOAuth
- $options — JRegistry
Methods
public
- createComment() — Method to post a comment to the status message. Requires authentication and publish_stream and user_status or friends_status permission.
- createLike() — Method to like status message. Requires authentication and publish_stream and user_status or friends_status permission.
- deleteComment() — Method to delete a comment. Requires authentication and publish_stream and user_status or friends_status permission.
- deleteLike() — Method to unlike a status message. Requires authentication and publish_stream and user_status or friends_status permission.
- getComments() — Method to get a status message's comments. Requires authentication.
- getLikes() — Method to get a status message's likes. Requires authentication.
- getStatus() — Method to get a status message. Requires authentication.
Inherited from JFacebookObject
protected
- 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.
public
- createConnection() — Method to create a connection.
- deleteConnection() — Method to delete a connection.
- get() — Method to get an object.
- getConnection() — Method to get object's connection.
- getOAuth() — Method used to get the OAuth client.
- sendRequest() — Method to send the request.
- setOAuth() — Method used to set the OAuth client.