Liste de tous les membres
Fonctions membres publiques |
| getPost ($post) |
| deletePost ($post) |
| getComments ($post, $limit=0, $offset=0, $until=null, $since=null) |
| createComment ($post, $message) |
| deleteComment ($comment) |
| getLikes ($post, $limit=0, $offset=0, $until=null, $since=null) |
| createLike ($post) |
| deleteLike ($post) |
| __construct (JRegistry $options=null, JHttp $client=null, JFacebookOAuth $oauth=null) |
| sendRequest ($path, $data= '', array $headers=null, $limit=0, $offset=0, $until=null, $since=null) |
| get ($object) |
| getConnection ($object, $connection=null, $extra_fields= '', $limit=0, $offset=0, $until=null, $since=null) |
| createConnection ($object, $connection=null, $parameters=null, array $headers=null) |
| deleteConnection ($object, $connection=null, $extra_fields= '') |
| setOAuth ($oauth) |
| getOAuth () |
Description détaillée
Définition à la ligne 23 du fichier post.php.
Documentation des fonctions membres
JFacebookPost::createComment |
( |
|
$post, |
|
|
|
$message |
|
) |
| |
Method to comment on a post. Requires authentication and publish_stream permission
- Paramètres:
-
string | $post | The post id. |
string | $message | The comment's text. |
- Renvoie:
- mixed The decoded JSON response or false if the client is not authenticated.
- Depuis:
- 13.1
Définition à la ligne 81 du fichier post.php.
{
$data['message'] = $message;
}
JFacebookPost::createLike |
( |
|
$post | ) |
|
Method to like a post. Requires authentication and publish_stream permission
- Paramètres:
-
- Renvoie:
- boolean Returns true if successful, and false otherwise.
- Depuis:
- 13.1
Définition à la ligne 130 du fichier post.php.
JFacebookPost::deleteComment |
( |
|
$comment | ) |
|
Method to delete a comment. Requires authentication and publish_stream permission
- Paramètres:
-
string | $comment | The comment's id. |
- Renvoie:
- boolean Returns true if successful, and false otherwise.
- Depuis:
- 13.1
Définition à la ligne 98 du fichier post.php.
JFacebookPost::deleteLike |
( |
|
$post | ) |
|
Method to unlike a post. Requires authentication and publish_stream permission
- Paramètres:
-
- Renvoie:
- boolean Returns true if successful, and false otherwise.
- Depuis:
- 13.1
Définition à la ligne 144 du fichier post.php.
JFacebookPost::deletePost |
( |
|
$post | ) |
|
Method to delete a post if it was created by this application. Requires authentication and publish_stream permission
- Paramètres:
-
- Renvoie:
- boolean Returns true if successful, and false otherwise.
- Depuis:
- 13.1
Définition à la ligne 48 du fichier post.php.
JFacebookPost::getComments |
( |
|
$post, |
|
|
|
$limit = 0 , |
|
|
|
$offset = 0 , |
|
|
|
$until = null , |
|
|
|
$since = null |
|
) |
| |
Method to get a post's comments. Requires authentication and read_stream permission.
- Paramètres:
-
string | $post | The post id. |
integer | $limit | The number of objects per page. |
integer | $offset | The object's number on the page. |
string | $until | A unix timestamp or any date accepted by strtotime. |
string | $since | A unix timestamp or any date accepted by strtotime. |
- Renvoie:
- mixed The decoded JSON response or false if the client is not authenticated.
- Depuis:
- 13.1
Définition à la ligne 66 du fichier post.php.
{
return $this->
getConnection($post,
'comments',
'', $limit, $offset, $until, $since);
}
JFacebookPost::getLikes |
( |
|
$post, |
|
|
|
$limit = 0 , |
|
|
|
$offset = 0 , |
|
|
|
$until = null , |
|
|
|
$since = null |
|
) |
| |
Method to get post's likes. Requires authentication and read_stream permission.
- Paramètres:
-
string | $post | The post id. |
integer | $limit | The number of objects per page. |
integer | $offset | The object's number on the page. |
string | $until | A unix timestamp or any date accepted by strtotime. |
string | $since | A unix timestamp or any date accepted by strtotime. |
- Renvoie:
- mixed The decoded JSON response or false if the client is not authenticated.
- Depuis:
- 13.1
Définition à la ligne 116 du fichier post.php.
{
return $this->
getConnection($post,
'likes',
'', $limit, $offset, $until, $since);
}
JFacebookPost::getPost |
( |
|
$post | ) |
|
Method to get a post. Requires authentication and read_stream permission for all data.
- Paramètres:
-
- Renvoie:
- mixed The decoded JSON response or false if the client is not authenticated.
- Depuis:
- 13.1
Définition à la ligne 34 du fichier post.php.
{
return $this->get($post);
}
La documentation de cette classe a été générée à partir du fichier suivant :