I have a callback url string params[:callback] and I need to append a query string \"&result=true\" and redirect the user. The better way I found o
params[:callback]
\"&result=true\"
You can try with merge
merge
request.parameters.merge({:result => true})
this will add your parameter to the ones already defined.