我正在尝试传递一个参数,该参数为woocommerce API请求返回10个以上订单,我使用的是ruby 1.9.3和rails 2.3.18。
当我传递常规参数并生成url时,它工作正常,例如下面的工作正常
params[:oauth_consumer_key] = @consumer_key
params[:oauth_nonce] = Digest::SHA1.hexdigest(Time.new.to_i.to_s)
params[:oauth_signature_method] = 'HMAC-SHA256'
params[:oauth_timestamp] = Time.new.to_i
params[:oauth_signature] = generate_oauth_signature(endpoint, params, method)
然而,当我尝试传递过滤器参数时,我收到错误,说现在我想传递过滤器参数,例如 filter[limit]=20
,请求无效。
I am passing the filter parameter like **`params["filter[limit]"] = 20`**, is this correct of is there any other way.