Adding an unescaped query parameter in C# -
i trying add unescaped parameter url of uribuilder. how can prevent characters of parameter escaped?
query.set("oauth_signature", consumer_secret + "%26"); builder.query = query.tostring();
the resulting url contains % escaped sequence oauth_signature value (which %25 apparently).
%26 & right? why not
query.set("oaut_signature", consumer_secret + "&");
Comments
Post a Comment