We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 207135f commit 4c3936cCopy full SHA for 4c3936c
lib/woocommerce_api/oauth.rb
@@ -42,7 +42,7 @@ def get_oauth_url
42
params["oauth_timestamp"] = Time.new.to_i
43
params["oauth_signature"] = CGI::escape(generate_oauth_signature(params, url))
44
45
- query_string = URI::encode_www_form_component(params.map{|key, value| "#{key}=#{value}"}.join("&"))
+ query_string = URI::encode_www_form(params.map{|key, value| "#{key}=#{value}"}.join("&"))
46
47
"#{url}?#{query_string}"
48
end
0 commit comments