You are here

8 calls to OAuthRequestLogger::start() in Lingotek Translation 7.2

OAuthRequester::requestAccessToken in lib/oauth-php/library/OAuthRequester.php
* Request an access token from the site belonging to consumer_key. * Before this we got an request token, now we want to exchange it for * an access token. * *
OAuthRequester::requestRequestToken in lib/oauth-php/library/OAuthRequester.php
* Request a request token from the site belonging to consumer_key * *
OAuthRequestVerifier::verifyIfSigned in lib/oauth-php/library/OAuthRequestVerifier.php
* Verify the request if it seemed to be signed. * *
OAuthRequestVerifier::__construct in lib/oauth-php/library/OAuthRequestVerifier.php
* Construct the request to be verified * *
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 * *