I'm using latest (1.0.1) version of Omniauth with rails 3.1.3. Right now, I'm using omniauth with 37signals strategy. I would like to pass custom argument ("state" parameter) depending on auth url (eg. http://localhost:3000/auth/37signals/5 should redirect to https://launchpad.37signals.com/authorization/new?(...)&state=5
I've tried to set (temporarily) fixed state, with something like
provider "37signals", "my_client_id", "my_secret", {state: "5"}
However, in my url there is (still) no state param. Any ideas why? Is it possible to set that param?