public function TwitterAPIExchange::getGetfield in Heartbeat 8
Get getfield string (simple getter)
Return value
string $this->getfields
3 calls to TwitterAPIExchange::getGetfield()
- TwitterAPIExchange::buildOauth in modules/
statusmessage/ includes/ TwitterAPIExchange.php - Build the Oauth object using params set in construct and additionals passed to this method. For v1.1, see: https://dev.twitter.com/docs/api/1.1
- TwitterAPIExchange::performRequest in modules/
statusmessage/ includes/ TwitterAPIExchange.php - Perform the actual data retrieval from the API
- TwitterAPIExchange::setPostfields in modules/
statusmessage/ includes/ TwitterAPIExchange.php - Set postfields array, example: array('screen_name' => 'J7mbo')
File
- modules/
statusmessage/ includes/ TwitterAPIExchange.php, line 179
Class
- TwitterAPIExchange
- Twitter-API-PHP : Simple PHP wrapper for the v1.1 API
Code
public function getGetfield() {
return $this->getfield;
}