Skip to content

fs/omniauth-redirect-proxy

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

53 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

OmniAuth redirect proxy

Problem

When you need to use OmniAuth with Google on not registered domain in Google Developer console it's a crap.

For example if you would like to use Heroku review apps each time you need to register new domain in the Developer Console to let OAuth work.

Solution

We could use this redirect proxy as a single point for callback which should be registered in Google Developer console.

Redirect proxy will catch up callback request from Google and redirect it back to application.

The trick is – application domain should be encoded with Base64 in the state parameter.

So we will have following flow:

OmniAuth setup

In your app you need setup OmniAuth.config.full_host to http://oauth-redirect-proxy.herokuapp.com

And encode request.base_url with Base64.encode64 in to state parameter.

Deploy

Just deploy to Heroku as regular Ruby application

heroku create
git push heroku master

Install

bin/setup

Quality tools

  • bin/quality based on RuboCop
  • .rubocop.yml describes active checks

Develop

bin/build checks your specs and runs quality tools

Credits

Ruby Base is maintained by Timur Vafin. It was written by Flatstack with the help of our contributors.

About

Simple redirect proxy to deal with unauthorized callback error in Google Oauth2

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published