I encoded ” Central Time (US & Canada) ” with C#.
timeZone =Server.UrlEncode ("Central Time (US & Canada)");
I want to have the same encoded string with ruby.
Ruby UrlEncode==> Central%252BTime%252B%2528US%252B%252526%252BCanada%2529
.Net UrlEncode twice=> Central%252bTime%252b%28US%252b%252526%252bCanada%29
.Net UrlEncode==> Central%2BTime%2B%28US%2B%2526%2BCanada%29
how can I catch the same encoded string?
Thanks.
I solved the problem.
like this:
And I updated ComputeHash function in the OAuthBase.cs file.
=>