Bug #137
POST in HttpClient against Goolge has problems with urlencoding '@'
Status: | Approved | Start date: | 10/18/2011 | |
---|---|---|---|---|
Priority: | Normal | Due date: | ||
Assignee: | - | % Done: | 0% | |
Category: | - | Spent time: | - | |
Target version: | - |
Description
String GetAuthToken() {
String h =
HttpsClient()
.URL
.Post("accountType=GOOGLE"
"&Email=" + GetIniKey("google_email") +
"&Passwd=" + GetIniKey("google_passwd") +
"&service=adwords")
// .Post("accountType", "GOOGLE")
// .Post("Email", GetIniKey("google_email"))
// .Post("Passwd", GetIniKey("google_passwd"))
// .Post("service", "gmail")
// .Post("source", "MyCompany-MyApp-1.0")
.ExecuteRedirect();
;
DDUMP;
return h;
}
History
#1 Updated by Miroslav Fidler over 13 years ago
- Status changed from New to Approved