-
-
Notifications
You must be signed in to change notification settings - Fork 290
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Oauth version giving me an issue #211
Comments
To be more specific I am sending my user to be authorized. When they come back it is giving an incorrect URI. If I downgrade my omniauth it lets it through. Great for my local machine. But when I'm trying to push up to heroku it is giving an error because it doesn't take the gemfile lock as is. |
I've had exactly the same problem.
I'm not sure it's a good trick but for now it's ok... I wonder why we have this problem; I guess others don't ... No idea |
Solved with this post: |
So I got my Oauth working locally by downgrading it like so (see below)
oauth2 (1.4.4)
faraday (>= 0.8, < 2.0)
jwt (>= 1.0, < 3.0)
multi_json (
> 1.3)> 0.5)multi_xml (
rack (>= 1.2, < 3)
omniauth (1.9.0)
hashie (>= 3.4.6, < 3.7.0)
rack (>= 1.6.2, < 3)
omniauth-oauth2 (1.3.1)
oauth2 (
> 1.1)> 1.2)omniauth (
That's the only way it works. However when I deploy to Heroku it is trying to bundle install on its own and it is getting the latest gem. Can anyone help with this. If I don't do this I get an invalid_redirect URI. Which is not true the paths are the same.
The text was updated successfully, but these errors were encountered: