-
Notifications
You must be signed in to change notification settings - Fork 1.1k
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
Ignore 'extra' in Twitter auth response to avoid CookieOverflow. Fixes #145. #179
Conversation
Thx @tbloncar!! |
Ignore 'extra' in Twitter auth response to avoid CookieOverflow. Fixes #145.
You're now an official contributor! |
Thanks, @lynndylanhurley. |
I just pushed version |
What does it change to remove the 'extra' parameter ?
|
The schema description is here. I'm not sure exactly - I think it varies by provider. |
I'm not sure this is the right think to do. I'm using this |
@nicolas-besnard Your point makes sense to me; I think the issue here is that the default behavior for Twitter auth (before this change) was a raise of One alternative to this solution is making some mention of using an alternate session store (like ActiveRecord store) in the README. This would be "as needed," of course. Another option might be using |
Yeah I got the same |
As this is an API, we don't need Cookie or Session. I just think the On Thu, Mar 12, 2015 at 3:35 PM Emir Ibrahimbegovic <
|
Yes that was my initial thought but I had some errors and had to deliver something, so I ended up adding session middleware so the code works, thanks for reminding me I will need to remove that. |
I too am using omniauth_facebook and require the data passed via
|
This addresses #145.