-
Notifications
You must be signed in to change notification settings - Fork 414
Description
Hi,
I'm new to this gem. I have setup oauth authentication in my Sinatra app and am trying to connect to our hosted instance of JIRA. I've created the application link, generated the key and certificate (couldn't get your rake tasks to work in my Sinatra app btw, so I ran them manually) and I've created an oauth dance (your words, not mine), based on the examples in your documentation.
The thing is, when I trigger the init_access_token method (where I pass oauth_verifier: params[:oauth_verifier], which is present, as the only argument), it raises an OAuth::Problem with the message parameter_absent. The parameter it says it's missing is the oauth_token, I've tried passing that to the init_access_token method (as it's the second param and it's used nowhere in your example), to no avail.
Does anyone know where to look?