function TwitterOAuth::post in Tweet Feed 7
Same name and namespace in other branches
- 6 inc/twitter-oauth.inc \TwitterOAuth::post()
- 7.3 inc/twitter-oauth.inc \TwitterOAuth::post()
- 7.2 inc/twitter-oauth.inc \TwitterOAuth::post()
POST wrapper for oAuthRequest.
File
- inc/twitter-oauth.inc, line 152 
Class
- TwitterOAuth
- Twitter OAuth class
Code
function post($url, $parameters = array()) {
  $response = $this
    ->oAuthRequest($url, 'POST', $parameters);
  if ($this->format === 'json' && $this->decode_json) {
    return json_decode($response);
  }
  return $response;
}