Skip to content

Latest commit

 

History

History
27 lines (17 loc) · 1.43 KB

README.md

File metadata and controls

27 lines (17 loc) · 1.43 KB

Bouncer

A Revel framework module for authentication

Configuring

After adding this module to your Revel webapp, you will need to add the following entries to your app.config. Of course, you can control the configurations by adding the appropriate settings in [dev] vs [prod] sections. For example, you can use a test Facebook app for [dev] and have production settings for your live systems.

auth.providersallowed

Add the allowed Providers your app can use by listing them in a comma-separated string. Currently supported are:

  • Facebook
  • Google
  • LinkedIn
  • Twitter

auth.provider.authconfig

For each provider allowed, you must configure an AuthConfig set. This is done by providing to Bouncer the necessary data in a JSON string. Replace provider with one of the Providers supported.

Please note the following observations on settings:

Troubleshooting