We use a third-party web service that returns multi-page POSTS data (file). But it also passes an extra parameter through the url http://ourdomain.com/theposturl?extra=good
the 'filename' object with: filename and: tempfile for binary data are in the [] parameters
but how do we get good from url?
post /theposturl
puts params.inspect
extra_param = ??????[:extra]
end
source
share