| 52 |
//we don't want to get limited by rpp |
//we don't want to get limited by rpp |
| 53 |
$url .= "&rpp=100"; |
$url .= "&rpp=100"; |
| 54 |
|
|
| 55 |
return $this->_makeRequest($url, $requestedFormat); |
// "Search API usage requires that applications include a unique and |
| 56 |
|
// identifying User Agent string" |
| 57 |
|
// @see http://apiwiki.twitter.com/Rate-limiting |
| 58 |
|
$data = urlencode('User-Agent Tapatio Drupal module (http://drupal.org/project/tapatio), using the ARC90 Twitter API (http://lab.arc90.com/2008/06/php_twitter_api_client.php)'); |
| 59 |
|
return $this->_makeRequest($url, $requestedFormat, false, false, $data); |
| 60 |
|
|
| 61 |
}//getTweetsForUsers |
}//getTweetsForUsers |
| 62 |
|
|