I installed omniauth for facebook authentication. Everything works but the routing. After visiting
- localhost/auth/facebook
I get sent to
- localhost/auth/facebook/callback?code=AQC3aoZVieeY3WSkYbj4VYoBlpMvE8vAsHkXIhP1o_QCIz2olj7vzwHy1cGKshtRdx_hw6fb8Ru6ErZAYPlIUMuW635bJD2_6pQGe659jTGpZx6h6kBZgumj4o4rJyoDwq032liV6jwP8FFTQDEqoXXkL-ArIpulqpFFUdbssvT8_tNtiAQGxdrylRNdj8hYnHA
This does not route to the controller to create anything. Only
- localhost/auth/facebook/callback?code=AQC3aoZ
will send me to create and check that the credentials are invalid.
I am using
match '/auth/facebook/callback' => 'auths#create'
I am unsure what is wrong and why one works while the other does not.