You are here

function OAuthRequest::getBody in Lingotek Translation 7.2

Same name and namespace in other branches
  1. 7.3 lib/oauth-php/library/OAuthRequest.php \OAuthRequest::getBody()

* Return the body of the OAuth request. * *

Return value

string null when no body

3 calls to OAuthRequest::getBody()
OAuthRequester::curl_raw in lib/oauth-php/library/OAuthRequester.php
* Open and close a curl session passing all the options to the curl libs * *
OAuthRequestSigner::sign in lib/oauth-php/library/OAuthRequestSigner.php
* Sign our message in the way the server understands. * Set the needed oauth_xxxx parameters. * *
OAuthRequestVerifier::verifyExtended in lib/oauth-php/library/OAuthRequestVerifier.php
* Verify the request * *

File

lib/oauth-php/library/OAuthRequest.php, line 487

Class

OAuthRequest
Object to parse an incoming OAuth request or prepare an outgoing OAuth request

Code

function getBody() {
  return $this->body;
}