Joomla Platform
13.1
Documentation des API du framework Joomla Platform
|
Fonctions membres publiques | |
getTweetById ($id, $trim_user=null, $entities=null, $my_retweet=null) | |
getUserTimeline ($user, $count=20, $include_rts=null, $no_replies=null, $since_id=0, $max_id=0, $trim_user=null, $contributor=null) | |
tweet ($status, $in_reply_to_status_id=null, $lat=null, $long=null, $place_id=null, $display_coordinates=null, $trim_user=null) | |
getMentions ($count=20, $include_rts=null, $entities=null, $since_id=0, $max_id=0, $trim_user=null, $contributor=null) | |
getRetweetsOfMe ($count=20, $since_id=0, $entities=null, $user_entities=null, $max_id=0, $trim_user=null) | |
getRetweeters ($id, $count=20, $cursor=null, $stringify_ids=null) | |
getRetweetsById ($id, $count=20, $trim_user=null) | |
deleteTweet ($id, $trim_user=null) | |
retweet ($id, $trim_user=null) | |
tweetWithMedia ($status, $media, $in_reply_to_status_id=null, $lat=null, $long=null, $place_id=null, $display_coordinates=null, $sensitive=null) | |
getOembed ($id=null, $url=null, $maxwidth=null, $hide_media=null, $hide_thread=null, $omit_script=null, $align=null, $related=null, $lang=null) | |
Fonctions membres publiques inherited from JTwitterObject | |
__construct (JRegistry &$options=null, JHttp $client=null, JTwitterOAuth $oauth=null) | |
checkRateLimit ($resource=null, $action=null) | |
fetchUrl ($path, $parameters=null) | |
getRateLimit ($resource) | |
sendRequest ($path, $method= 'GET', $data=array(), $headers=array()) | |
getOption ($key) | |
setOption ($key, $value) |
Additional Inherited Members | |
Attributs protégés inherited from JTwitterObject | |
$options | |
$client | |
$oauth |
Définition à la ligne 19 du fichier statuses.php.
JTwitterStatuses::deleteTweet | ( | $id, | |
$trim_user = null |
|||
) |
Method to delete the status specified by the required ID parameter.
integer | $id | The numerical ID of the desired status. |
boolean | $trim_user | When set to true, each tweet returned in a timeline will include a user object including only the status author's numerical ID. |
Définition à la ligne 447 du fichier statuses.php.
JTwitterStatuses::getMentions | ( | $count = 20 , |
|
$include_rts = null , |
|||
$entities = null , |
|||
$since_id = 0 , |
|||
$max_id = 0 , |
|||
$trim_user = null , |
|||
$contributor = null |
|||
) |
Method to retrieve the most recent mentions for the authenticating user.
integer | $count | Specifies the number of tweets to try and retrieve, up to a maximum of 200. Retweets are always included in the count, so it is always suggested to set $include_rts to true |
boolean | $include_rts | When set to true, the timeline will contain native retweets in addition to the standard stream of tweets. |
boolean | $entities | When set to true, each tweet will include a node called "entities,". This node offers a variety of metadata about the tweet in a discreet structure, including: user_mentions, urls, and hashtags. |
integer | $since_id | Returns results with an ID greater than (that is, more recent than) the specified ID. |
integer | $max_id | Returns results with an ID less than (that is, older than) the specified ID. |
boolean | $trim_user | When set to true, each tweet returned in a timeline will include a user object including only the status author's numerical ID. |
string | $contributor | This parameter enhances the contributors element of the status response to include the screen_name of the contributor. |
RuntimeException |
Définition à la ligne 243 du fichier statuses.php.
JTwitterStatuses::getOembed | ( | $id = null , |
|
$url = null , |
|||
$maxwidth = null , |
|||
$hide_media = null , |
|||
$hide_thread = null , |
|||
$omit_script = null , |
|||
$align = null , |
|||
$related = null , |
|||
$lang = null |
|||
) |
Method to get information allowing the creation of an embedded representation of a Tweet on third party sites. Note: either the id or url parameters must be specified in a request. It is not necessary to include both.
integer | $id | The Tweet/status ID to return embed code for. |
string | $url | The URL of the Tweet/status to be embedded. |
integer | $maxwidth | The maximum width in pixels that the embed should be rendered at. This value is constrained to be between 250 and 550 pixels. |
boolean | $hide_media | Specifies whether the embedded Tweet should automatically expand images which were uploaded via POST statuses/update_with_media. |
boolean | $hide_thread | Specifies whether the embedded Tweet should automatically show the original message in the case that the embedded Tweet is a reply. |
boolean | $omit_script | Specifies whether the embedded Tweet HTML should include a <script> element pointing to widgets.js. In cases where a page already includes widgets.js, setting this value to true will prevent a redundant script element from being included. |
string | $align | Specifies whether the embedded Tweet should be left aligned, right aligned, or centered in the page. Valid values are left, right, center, and none. |
string | $related | A value for the TWT related parameter, as described in Web Intents. This value will be forwarded to all Web Intents calls. |
string | $lang | Language code for the rendered embed. This will affect the text and localization of the rendered HTML. |
RuntimeException |
Définition à la ligne 588 du fichier statuses.php.
JTwitterStatuses::getRetweeters | ( | $id, | |
$count = 20 , |
|||
$cursor = null , |
|||
$stringify_ids = null |
|||
) |
Method to show user objects of up to 100 members who retweeted the status.
integer | $id | The numerical ID of the desired status. |
integer | $count | Specifies the number of retweets to try and retrieve, up to a maximum of 100. |
integer | $cursor | Causes the list of IDs to be broken into pages of no more than 100 IDs at a time. The number of IDs returned is not guaranteed to be 100 as suspended users are filtered out after connections are queried. If no cursor is provided, a value of -1 will be assumed, which is the first "page." |
boolean | $stringify_ids | Set to true to return IDs as strings, false to return as integers. |
Définition à la ligne 372 du fichier statuses.php.
JTwitterStatuses::getRetweetsById | ( | $id, | |
$count = 20 , |
|||
$trim_user = null |
|||
) |
Method to get up to 100 of the first retweets of a given tweet.
integer | $id | The numerical ID of the desired status. |
integer | $count | Specifies the number of tweets to try and retrieve, up to a maximum of 200. Retweets are always included in the count, so it is always suggested to set $include_rts to true |
boolean | $trim_user | When set to true, each tweet returned in a timeline will include a user object including only the status author's numerical ID. |
Définition à la ligne 415 du fichier statuses.php.
JTwitterStatuses::getRetweetsOfMe | ( | $count = 20 , |
|
$since_id = 0 , |
|||
$entities = null , |
|||
$user_entities = null , |
|||
$max_id = 0 , |
|||
$trim_user = null |
|||
) |
Method to get the most recent tweets of the authenticated user that have been retweeted by others.
integer | $count | Specifies the number of tweets to try and retrieve, up to a maximum of 200. Retweets are always included in the count, so it is always suggested to set $include_rts to true |
integer | $since_id | Returns results with an ID greater than (that is, more recent than) the specified ID. |
boolean | $entities | When set to true, each tweet will include a node called "entities,". This node offers a variety of metadata about the tweet in a discreet structure, including: user_mentions, urls, and hashtags. |
boolean | $user_entities | The user entities node will be disincluded when set to false. |
integer | $max_id | Returns results with an ID less than (that is, older than) the specified ID. |
boolean | $trim_user | When set to true, each tweet returned in a timeline will include a user object including only the status author's numerical ID. |
Définition à la ligne 312 du fichier statuses.php.
JTwitterStatuses::getTweetById | ( | $id, | |
$trim_user = null , |
|||
$entities = null , |
|||
$my_retweet = null |
|||
) |
Method to get a single tweet with the given ID.
integer | $id | The ID of the tweet to retrieve. |
boolean | $trim_user | When set to true, each tweet returned in a timeline will include a user object including only the status author's numerical ID. |
boolean | $entities | When set to true, each tweet will include a node called "entities,". This node offers a variety of metadata about the tweet in a discreet structure, including: user_mentions, urls, and hashtags. |
boolean | $my_retweet | When set to either true, t or 1, any statuses returned that have been retweeted by the authenticating user will include an additional current_user_retweet node, containing the ID of the source status for the retweet. |
Définition à la ligne 36 du fichier statuses.php.
JTwitterStatuses::getUserTimeline | ( | $user, | |
$count = 20 , |
|||
$include_rts = null , |
|||
$no_replies = null , |
|||
$since_id = 0 , |
|||
$max_id = 0 , |
|||
$trim_user = null , |
|||
$contributor = null |
|||
) |
Method to retrieve the latest statuses from the specified user timeline.
mixed | $user | Either an integer containing the user ID or a string containing the screen name. |
integer | $count | Specifies the number of tweets to try and retrieve, up to a maximum of 200. Retweets are always included in the count, so it is always suggested to set $include_rts to true |
boolean | $include_rts | When set to true, the timeline will contain native retweets in addition to the standard stream of tweets. |
boolean | $no_replies | This parameter will prevent replies from appearing in the returned timeline. This parameter is only supported for JSON and XML responses. |
integer | $since_id | Returns results with an ID greater than (that is, more recent than) the specified ID. |
integer | $max_id | Returns results with an ID less than (that is, older than) the specified ID. |
boolean | $trim_user | When set to true, each tweet returned in a timeline will include a user object including only the status author's numerical ID. |
boolean | $contributor | This parameter enhances the contributors element of the status response to include the screen_name of the contributor. By default only the user_id of the contributor is included. |
RuntimeException |
Définition à la ligne 89 du fichier statuses.php.
JTwitterStatuses::retweet | ( | $id, | |
$trim_user = null |
|||
) |
Method to retweet a tweet.
integer | $id | The numerical ID of the desired status. |
boolean | $trim_user | When set to true, each tweet returned in a timeline will include a user object including only the status author's numerical ID. |
Définition à la ligne 475 du fichier statuses.php.
JTwitterStatuses::tweet | ( | $status, | |
$in_reply_to_status_id = null , |
|||
$lat = null , |
|||
$long = null , |
|||
$place_id = null , |
|||
$display_coordinates = null , |
|||
$trim_user = null |
|||
) |
Method to post a tweet.
string | $status | The text of the tweet. |
integer | $in_reply_to_status_id | The ID of an existing status that the update is in reply to. |
float | $lat | The latitude of the location this tweet refers to. |
float | $long | The longitude of the location this tweet refers to. |
string | $place_id | A place in the world. |
boolean | $display_coordinates | Whether or not to put a pin on the exact coordinates a tweet has been sent from. |
boolean | $trim_user | When set to true, each tweet returned in a timeline will include a user object including only the status author's numerical ID. |
Définition à la ligne 174 du fichier statuses.php.
JTwitterStatuses::tweetWithMedia | ( | $status, | |
$media, | |||
$in_reply_to_status_id = null , |
|||
$lat = null , |
|||
$long = null , |
|||
$place_id = null , |
|||
$display_coordinates = null , |
|||
$sensitive = null |
|||
) |
Method to post a tweet with media.
string | $status | The text of the tweet. |
string | $media | File to upload |
integer | $in_reply_to_status_id | The ID of an existing status that the update is in reply to. |
float | $lat | The latitude of the location this tweet refers to. |
float | $long | The longitude of the location this tweet refers to. |
string | $place_id | A place in the world. |
boolean | $display_coordinates | Whether or not to put a pin on the exact coordinates a tweet has been sent from. |
boolean | $sensitive | Set to true for content which may not be suitable for every audience. |
RuntimeException |
Définition à la ligne 509 du fichier statuses.php.