You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
NOTE: if you use this gem with Devise you should use :openid_connect name, or Devise would route to 'users/auth/:provider' rather than 'users/auth/openid_connect'
this means that I cannot use more openid providers when using Devise?
thank you
The text was updated successfully, but these errors were encountered:
You can have however many providers you'd like (we have 3). In config/initializers/devise.rb :
config.omniauth(:openid_connect,name: :your_provider_name,issuer: YOUR_PROVIDER_ISSUER_URL,discovery: true,# other options you may needclient_options: {identifier: YOUR_CLIENT_ID,secret: YOUR_CLIENT_SECRET,},)
This will use the name option to route to /users/auth/:provider like /users/auth/your_provider_name
The doc says:
this means that I cannot use more openid providers when using Devise?
thank you
The text was updated successfully, but these errors were encountered: