JFacebookCheckin
class JFacebookCheckin extends JFacebookObject
Facebook API Checkin class for the Joomla Platform.
Methods
Constructor.
Method to send the request.
Method to get object's connection.
Method to create a connection.
Method to delete a connection.
Method to get a checkin. Requires authentication and usercheckins or friendscheckins permission.
Method to get a checkin's comments. Requires authentication and usercheckins or friendscheckins permission.
Method to post a comment to the checkin. Requires authentication and publishstream and usercheckins or friends_checkins permission.
Method to delete a comment. Requires authentication and publish_stream permission.
Method to get a checkin's likes. Requires authentication and usercheckins or friendscheckins permission.
Method to like a checkin. Requires authentication and publishstream and usercheckins or friends_checkins permission.
Method to unlike a checkin. Requires authentication and publish_stream permission.
Details
__construct(
Registry $options = null,
JHttp $client = null,
JFacebookOAuth $oauth = null)
Constructor.
mixed
sendRequest(
string $path,
mixed $data = '',
array $headers = null,
integer $limit,
integer $offset,
string $until = null,
string $since = null)
Method to send the request.
mixed
getConnection(
string $object,
string $connection = null,
string $extra_fields = '',
integer $limit,
integer $offset,
string $until = null,
string $since = null)
Method to get object's connection.
mixed
createConnection(
string $object,
string $connection = null,
array $parameters = null,
array $headers = null)
Method to create a connection.
mixed
deleteConnection(
string $object,
string $connection = null,
string $extra_fields = '')
Method to delete a connection.
mixed
getCheckin(
string $checkin)
Method to get a checkin. Requires authentication and usercheckins or friendscheckins permission.
mixed
getComments(
string $checkin,
integer $limit,
integer $offset,
string $until = null,
string $since = null)
Method to get a checkin's comments. Requires authentication and usercheckins or friendscheckins permission.
mixed
createComment(
string $checkin,
string $message)
Method to post a comment to the checkin. Requires authentication and publishstream and usercheckins or friends_checkins permission.
mixed
deleteComment(
string $comment)
Method to delete a comment. Requires authentication and publish_stream permission.
mixed
getLikes(
string $checkin,
integer $limit,
integer $offset,
string $until = null,
string $since = null)
Method to get a checkin's likes. Requires authentication and usercheckins or friendscheckins permission.