From 6a9fb68678be74feb159612584707ce42ee0fde6 Mon Sep 17 00:00:00 2001 From: Vitaly Takmazov Date: Wed, 10 Apr 2013 23:09:59 +0400 Subject: [PATCH] applied fix from http://code.google.com/p/twitcurl/issues/detail?id=48 --- backends/twitter/libtwitcurl/oauthlib.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/backends/twitter/libtwitcurl/oauthlib.h b/backends/twitter/libtwitcurl/oauthlib.h index 5f702e01..306ffc6b 100644 --- a/backends/twitter/libtwitcurl/oauthlib.h +++ b/backends/twitter/libtwitcurl/oauthlib.h @@ -41,9 +41,9 @@ namespace oAuthLibDefaults namespace oAuthTwitterApiUrls { /* Twitter OAuth API URLs */ - const std::string OAUTHLIB_TWITTER_REQUEST_TOKEN_URL = "twitter.com/oauth/request_token"; - const std::string OAUTHLIB_TWITTER_AUTHORIZE_URL = "twitter.com/oauth/authorize?oauth_token="; - const std::string OAUTHLIB_TWITTER_ACCESS_TOKEN_URL = "twitter.com/oauth/access_token"; + const std::string OAUTHLIB_TWITTER_REQUEST_TOKEN_URL = "api.twitter.com/oauth/request_token"; + const std::string OAUTHLIB_TWITTER_AUTHORIZE_URL = "api.twitter.com/oauth/authorize?oauth_token="; + const std::string OAUTHLIB_TWITTER_ACCESS_TOKEN_URL = "api.twitter.com/oauth/access_token"; }; typedef enum _eOAuthHttpRequestType