Skip to content

Commit

Permalink
Fixed comma in example (#433)
Browse files Browse the repository at this point in the history
  • Loading branch information
CringeDeveloper authored Sep 30, 2022
1 parent 0065b3e commit 00e2d0a
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions examples/omni_auth.rb
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,11 @@
# Default usage, this will give you offline access and a refresh token
# using default scopes 'email' and 'profile'
#
provider :google_oauth2, ENV['GOOGLE_KEY'], ENV['GOOGLE_SECRET'], scope: 'email,profile'
provider :google_oauth2, ENV['GOOGLE_KEY'], ENV['GOOGLE_SECRET'], scope: 'email, profile'

# Custom redirect_uri
#
# provider :google_oauth2, ENV['GOOGLE_KEY'], ENV['GOOGLE_SECRET'], scope: 'email,profile', redirect_uri: 'https://localhost:3000/redirect'
# provider :google_oauth2, ENV['GOOGLE_KEY'], ENV['GOOGLE_SECRET'], scope: 'email, profile', redirect_uri: 'https://localhost:3000/redirect'

# Manual setup for offline access with a refresh token.
#
Expand All @@ -21,15 +21,15 @@
# Custom scope supporting youtube. If you are customizing scopes, remember
# to include the default scopes 'email' and 'profile'
#
# provider :google_oauth2, ENV['GOOGLE_KEY'], ENV['GOOGLE_SECRET'], scope: 'http://gdata.youtube.com,email,profile,plus.me'
# provider :google_oauth2, ENV['GOOGLE_KEY'], ENV['GOOGLE_SECRET'], scope: 'http://gdata.youtube.com, email, profile, plus.me'

# Custom scope for users only using Google for account creation/auth and do not require a refresh token.
#
# provider :google_oauth2, ENV['GOOGLE_KEY'], ENV['GOOGLE_SECRET'], access_type: 'online', prompt: ''

# To include information about people in your circles you must include the 'plus.login' scope.
#
# provider :google_oauth2, ENV['GOOGLE_KEY'], ENV['GOOGLE_SECRET'], skip_friends: false, scope: 'email,profile,plus.login'
# provider :google_oauth2, ENV['GOOGLE_KEY'], ENV['GOOGLE_SECRET'], skip_friends: false, scope: 'email, profile, plus.login'

# If you need to acquire whether user picture is a default one or uploaded by user.
#
Expand Down

0 comments on commit 00e2d0a

Please sign in to comment.