function LingotekOAuthRequest::getBody in Lingotek Translation 7.5
Same name and namespace in other branches
- 7.7 lib/oauth-php/library/LingotekOAuthRequest.php \LingotekOAuthRequest::getBody()
- 7.4 lib/oauth-php/library/LingotekOAuthRequest.php \LingotekOAuthRequest::getBody()
- 7.6 lib/oauth-php/library/LingotekOAuthRequest.php \LingotekOAuthRequest::getBody()
* Return the body of the OAuth request. * *
Return value
string null when no body
3 calls to LingotekOAuthRequest::getBody()
- LingotekOAuthRequester::curl_raw in lib/
oauth-php/ library/ LingotekOAuthRequester.php - * Open and close a curl session passing all the options to the curl libs * *
- LingotekOAuthRequestSigner::sign in lib/
oauth-php/ library/ LingotekOAuthRequestSigner.php - * Sign our message in the way the server understands. * Set the needed oauth_xxxx parameters. * *
- LingotekOAuthRequestVerifier::verifyExtended in lib/
oauth-php/ library/ LingotekOAuthRequestVerifier.php - * Verify the request * *
File
- lib/
oauth-php/ library/ LingotekOAuthRequest.php, line 487
Class
- LingotekOAuthRequest
- Object to parse an incoming OAuth request or prepare an outgoing OAuth request
Code
function getBody() {
return $this->body;
}