3
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

同じ OmniAuth provider を1つのアプリで複数使いたい

Posted at

path_prefix と callback_path を変えて複数登録すればいい

Rails.application.config.middleware.use OmniAuth::Builder do
  privider :twitter, 'x_key', 'x_secret', path_prefix: '/auth/xxx', callback_path: '/auth/xxx/twitter/callback'
  privider :twitter, 'y_key', 'y_secret', path_prefix: '/auth/yyy', callback_path: '/auth/yyy/twitter/callback'
end
3
3
1

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
3
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?