diff options
Diffstat (limited to 'gtalkext/inbox.cpp')
-rw-r--r-- | gtalkext/inbox.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gtalkext/inbox.cpp b/gtalkext/inbox.cpp index 54be1d5..449cdde 100644 --- a/gtalkext/inbox.cpp +++ b/gtalkext/inbox.cpp @@ -28,19 +28,19 @@ static const LPTSTR COMMON_GMAIL_HOST1 = _T("gmail.com");
static const LPTSTR COMMON_GMAIL_HOST2 = _T("googlemail.com");
-static const LPSTR AUTH_REQUEST_URL = "https://google.com/accounts/ClientAuth";
+static const LPSTR AUTH_REQUEST_URL = "https://www.google.com/accounts/ClientAuth";
static const LPSTR AUTH_REQUEST_PARAMS = "Email=%s&Passwd=%s&"
"accountType=HOSTED_OR_GOOGLE&"
"skipvpage=true&"
"PersistentCookie=false";
-static const LPSTR ISSUE_TOKEN_REQUEST_URL = "https://google.com/accounts/IssueAuthToken";
+static const LPSTR ISSUE_TOKEN_REQUEST_URL = "https://www.google.com/accounts/IssueAuthToken";
static const LPSTR ISSUE_TOKEN_REQUEST_PARAMS = "SID=%s&LSID=%s&"
"Session=true&"
"skipvpage=true&"
"service=gaia";
-static const LPSTR TOKEN_AUTH_URL = "https://google.com/accounts/TokenAuth?"\
+static const LPSTR TOKEN_AUTH_URL = "https://www.google.com/accounts/TokenAuth?"\
"auth=%s&"
"service=mail&"
"continue=%s&"
|