You are here

public function Twitter::mentions in Twitter 7.3

Same name and namespace in other branches
  1. 6.3 twitter.lib.php \Twitter::mentions()

See also

https://dev.twitter.com/docs/api/1/get/statuses/mentions

File

./twitter.lib.php, line 110
Classes to implement the full Twitter API

Class

Twitter
Primary Twitter API implementation class Supports the full REST API for twitter.

Code

public function mentions($params = array()) {
  return $this
    ->get_statuses('statuses/mentions', $params, TRUE);
}