You are here

public function Twitter::friendships_outgoing in Twitter 7.5

Same name and namespace in other branches
  1. 6.5 twitter.lib.php \Twitter::friendships_outgoing()
  2. 7.6 twitter.lib.php \Twitter::friendships_outgoing()

Returns a collection of numeric IDs for every protected user for whom the authenticating user has a pending follow request.

Parameters

array $params: An array of parameters.

Return value

An array of numeric user IDs.

See also

https://dev.twitter.com/docs/api/1.1/get/friendships/outgoing

File

./twitter.lib.php, line 778
Integration layer to communicate with the Twitter REST API 1.1. https://dev.twitter.com/docs/api/1.1

Class

Twitter
Primary Twitter API implementation class

Code

public function friendships_outgoing($params = array()) {
  return $this
    ->call('friendships/outgoing', $params, 'GET');
}