RailsCasts Pro episodes are now free!
Learn more or hide this
GitHub User: rdsoze
Site: http://geekd.in
Great episode but I wasted some valuable time on a silly issue. The omniauth-aouth gem is gobbling the app errors and its pretty difficult to debug them. In this case,the following needs to be changed in the user model to
user.name = auth["info"]["name"]
instead of
user.name = auth["user_info"]["name"]
Great episode but I wasted some valuable time on a silly issue. The omniauth-aouth gem is gobbling the app errors and its pretty difficult to debug them.
In this case,the following needs to be changed in the user model to
instead of