From a7a3f8ec1cacc8620f0b67bf9eb57ec5c6635d78 Mon Sep 17 00:00:00 2001 From: Chris McCabe Date: Tue, 9 Apr 2013 12:49:03 +0100 Subject: [PATCH] twitter requires oauth_verifier to be passed updated to meet the new requirement --- application/libraries/tweet.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/application/libraries/tweet.php b/application/libraries/tweet.php index 20504da..36dea2e 100755 --- a/application/libraries/tweet.php +++ b/application/libraries/tweet.php @@ -485,7 +485,7 @@ private function _getRequestToken() private function _getAccessToken() { - return $this->_httpRequest('GET', $this->_accessTokenUrl); + return $this->_httpRequest('GET', $this->_accessTokenUrl, array('oauth_verifier'=>$_GET['oauth_verifier'])); } protected function _httpRequest($method = null, $url = null, $params = null)