You are here

public function TwitterAPIExchange::getPostfields in Heartbeat 8

Get postfields array (simple getter)

Return value

array $this->postfields

3 calls to TwitterAPIExchange::getPostfields()
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::setGetfield in modules/statusmessage/includes/TwitterAPIExchange.php
Set getfield string, example: '?screen_name=J7mbo'

File

modules/statusmessage/includes/TwitterAPIExchange.php, line 189

Class

TwitterAPIExchange
Twitter-API-PHP : Simple PHP wrapper for the v1.1 API

Code

public function getPostfields() {
  return $this->postfields;
}