# HG changeset patch # User Yves-Marie Haussonne <1218002+ymph@users.noreply.github.com> # Date 1350376218 -7200 # Node ID af8b105512863358c53e78779d103b6def316df7 # Parent 5cb9af039528db104f260245fc582ca2d6012d93 correct twitter url for the server diff -r 5cb9af039528 -r af8b10551286 web/tweet_ajax.php --- a/web/tweet_ajax.php Tue Oct 16 10:01:43 2012 +0200 +++ b/web/tweet_ajax.php Tue Oct 16 10:30:18 2012 +0200 @@ -18,7 +18,7 @@ */ $token = unserialize($_SESSION['TWITTER_ACCESS_TOKEN']); $client = $token->getHttpClient($configuration); - $client->setUri('https://api.twitter.com/1.1/statuses/update.json'); + $client->setUri('http://api.twitter.com/1.1/statuses/update.json'); $client->setMethod(Zend_Http_Client::POST); $client->setParameterPost('status', $_POST['status']); $response = $client->request();