From b4863c782be24ee756c2d7ff990f5a53cde66545 Mon Sep 17 00:00:00 2001 From: "Michael J. Rubinsky" Date: Mon, 20 Jul 2009 15:03:29 -0400 Subject: [PATCH] account/end_session requires a POST --- framework/Service_Twitter/lib/Horde/Service/Twitter/Account.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/framework/Service_Twitter/lib/Horde/Service/Twitter/Account.php b/framework/Service_Twitter/lib/Horde/Service/Twitter/Account.php index 8a6a3d1f6..4062fb07b 100644 --- a/framework/Service_Twitter/lib/Horde/Service/Twitter/Account.php +++ b/framework/Service_Twitter/lib/Horde/Service/Twitter/Account.php @@ -56,7 +56,7 @@ class Horde_Service_Twitter_Account public function endSession() { $url = $this->_endpoint . 'end_session.' . $this->_format; - return $this->_twitter->request->get($url); + return $this->_twitter->request->post($url); } /** -- 2.11.0