\JFacebookNote
Facebook API Note class for the Joomla Platform.
Synopsis
class JFacebookNote
extends JFacebookObject
{
- // Inherited members from JFacebookObject
- protected JRegistry $options;
- protected JHttp $client;
- protected JFacebookOAuth $oauth;
- // methods
- public mixed getNote()
- public mixed getComments()
- public mixed createComment()
- public boolean deleteComment()
- public mixed getLikes()
- public boolean createLike()
- public boolean 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 comment on a note. Requires authentication and publish_stream and user_notes or friends_notes permissions.
- createLike() — Method to like a note. Requires authentication and publish_stream and user_notes or friends_notes permissions.
- deleteComment() — Method to delete a comment. Requires authentication and publish_stream and user_notes or friends_notes permissions.
- deleteLike() — Method to unlike a note. Requires authentication and publish_stream and user_notes or friends_notes permissions.
- getComments() — Method to get a note's comments. Requires authentication and user_notes or friends_notes permission for non-public notes.
- getLikes() — Method to get note's likes. Requires authentication and user_notes or friends_notes for non-public notes.
- getNote() — Method to get a note. Requires authentication and user_notes or friends_notes permission for non-public notes.
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.