You are here

8 calls to OAuthRequest::getParam() in Lingotek Translation 7.2

OAuthRequester::doRequest in lib/oauth-php/library/OAuthRequester.php
* Perform the request, returns the response code, headers and body. * *
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 * *
OAuthRequestVerifier::verifyIfSigned in lib/oauth-php/library/OAuthRequestVerifier.php
* Verify the request if it seemed to be signed. * *
OAuthServer::accessToken in lib/oauth-php/library/OAuthServer.php
* Exchange a request token for an access token. * The exchange is only succesful iff the request token has been authorized. * * Never returns, calls exit() when token is exchanged or when error is returned.
OAuthServer::authorizeFinish in lib/oauth-php/library/OAuthServer.php
* Overrule this method when you want to display a nice page when * the authorization is finished. This function does not know if the authorization was * succesfull, you need to check the token in the database. * *
OAuthServer::authorizeVerify in lib/oauth-php/library/OAuthServer.php
* Verify the start of an authorization request. Verifies if the request token is valid. * Next step is the method authorizeFinish() * * Nota bene: this stores the current token, consumer key and callback in the _SESSION * * @exception…
OAuthServer::requestToken in lib/oauth-php/library/OAuthServer.php
* Handle the request_token request. * Returns the new request token and request token secret. * * TODO: add correct result code to exception * *