encoding fix for real

This commit is contained in:
Adam D. Ruppe 2013-07-03 20:47:11 -04:00
parent a1291a48cd
commit f9278d0f47
2 changed files with 16 additions and 3 deletions

15
cgi.d
View File

@ -2147,7 +2147,7 @@ string rawurlencode(in char[] data) {
} else {
ret ~= '%';
// since we iterate on char, this should give us the octets of the full utf8 string
ret ~= toHex(c);
ret ~= toHexUpper(c);
}
}
@ -2182,6 +2182,19 @@ string toHex(long num) {
return to!string(array(ret.retro));
}
string toHexUpper(long num) {
string ret;
while(num) {
int v = num % 16;
num /= 16;
char d = cast(char) ((v < 10) ? v + '0' : (v-10) + 'A');
ret ~= d;
}
return to!string(array(ret.retro));
}
// the generic mixins
/// Use this instead of writing your own main

View File

@ -274,14 +274,14 @@ string tweet(OAuthParams params, string oauthToken, string tokenSecret, string m
"token_secret" : tokenSecret,
];
auto data = "status=" ~ rawurlencode(message);//encodeVariables(["status" : message]);
auto data = "status=" ~ rawurlencode(message);//.replace("%3F", "?");//encodeVariables(["status" : message]);
auto ret = curlOAuth(params, "http://api.twitter.com" ~ "/1.1/statuses/update.json", args, "POST", data);
auto val = jsonToVariant(ret).get!(Variant[string]);
if("id_str" !in val)
throw new Exception("bad result from twitter: " ~ ret);
return to!string(val);//val["id_str"].get!string;
return val["id_str"].get!string;
}
import std.file;