16 calls to OAuthStorePostgreSQL::query() in Lingotek Translation 7.4
- OAuthStorePostgreSQL::addConsumerRequestToken in lib/
oauth-php/ library/ store/ OAuthStorePostgreSQL.php - Add an unautorized request token to our server.
- OAuthStorePostgreSQL::addLog in lib/
oauth-php/ library/ store/ OAuthStorePostgreSQL.php - Add an entry to the log table
- OAuthStorePostgreSQL::addServerToken in lib/
oauth-php/ library/ store/ OAuthStorePostgreSQL.php - Add a request token we obtained from a server.
- OAuthStorePostgreSQL::authorizeConsumerRequestToken in lib/
oauth-php/ library/ store/ OAuthStorePostgreSQL.php - Upgrade a request token to be an authorized request token.
- OAuthStorePostgreSQL::checkServerNonce in lib/
oauth-php/ library/ store/ OAuthStorePostgreSQL.php - Check an nonce/timestamp combination. Clears any nonce combinations that are older than the one received.
- OAuthStorePostgreSQL::deleteConsumer in lib/
oauth-php/ library/ store/ OAuthStorePostgreSQL.php - Delete a consumer key. This removes access to our site for all applications using this key.
- OAuthStorePostgreSQL::deleteConsumerAccessToken in lib/
oauth-php/ library/ store/ OAuthStorePostgreSQL.php - Delete a consumer access token.
- OAuthStorePostgreSQL::deleteConsumerRequestToken in lib/
oauth-php/ library/ store/ OAuthStorePostgreSQL.php - Delete a consumer token. The token must be a request or authorized token.
- OAuthStorePostgreSQL::deleteServer in lib/
oauth-php/ library/ store/ OAuthStorePostgreSQL.php - Delete a server key. This removes access to that site.
- OAuthStorePostgreSQL::deleteServerToken in lib/
oauth-php/ library/ store/ OAuthStorePostgreSQL.php - Delete a token we obtained from a server.
- OAuthStorePostgreSQL::exchangeConsumerRequestForAccessToken in lib/
oauth-php/ library/ store/ OAuthStorePostgreSQL.php - Exchange an authorized request token for new access token.
- OAuthStorePostgreSQL::getConsumerStatic in lib/
oauth-php/ library/ store/ OAuthStorePostgreSQL.php - Fetch the static consumer key for this provider. The user for the static consumer key is NULL (no user, shared key). If the key did not exist then the key is created.
- OAuthStorePostgreSQL::setConsumerAccessTokenTtl in lib/
oauth-php/ library/ store/ OAuthStorePostgreSQL.php - Set the ttl of a consumer access token. This is done when the server receives a valid request with a xoauth_token_ttl parameter in it.
- OAuthStorePostgreSQL::setServerTokenTtl in lib/
oauth-php/ library/ store/ OAuthStorePostgreSQL.php - Set the ttl of a server access token. This is done when the server receives a valid request with a xoauth_token_ttl parameter in it.
- OAuthStorePostgreSQL::updateConsumer in lib/
oauth-php/ library/ store/ OAuthStorePostgreSQL.php - Insert/update a new consumer with this server (we will be the server) When this is a new consumer, then also generate the consumer key and secret. Never updates the consumer key and secret. When the id is set, then the key and secret must correspond…
- OAuthStorePostgreSQL::updateServer in lib/
oauth-php/ library/ store/ OAuthStorePostgreSQL.php - Register or update a server for our site (we will be the consumer)