Uber OAuth2 Strategy for OmniAuth 1.x and supports the OAuth 2.0 server-side flow.
You may view the Uber API documentation here.
Add to your Gemfile
:
gem 'omniauth-uber'
Then bundle install
.
OmniAuth::Strategies::Uber
is simply Rack middleware. Read the OmniAuth 1.0 docs for detailed instructions: https://github.com/intridea/omniauth.
Here's a quick example, adding the middleware to a Rails app in config/initializers/omniauth.rb
:
Rails.application.config.middleware.use OmniAuth::Builder do
provider :uber, ENV['UBER_CLIENT_ID'], ENV['UBER_CLIENT_SECRET']
end
Currently, there is only one configuration option that needs to be set:
scope
: A space separated list of permissions you want to request from the user (e.g:profile history request
). All scopes documented by Uber are working. Default:profile
Rails.application.config.middleware.use OmniAuth::Builder do
provider :uber, ENV['UBER_CLIENT_ID'], ENV['UBER_CLIENT_SECRET'], :scope => 'profile history'
end
profile
: Access the basic profile information on a user's Uber account including their first name, email address, and profile picture.history
: Pull trip data including the locations, times, and product type of a user's historical pickups and drop-offs.request
: Allow for trip requests- ... see Uber developer documentation for more scopes
Here's an example Auth Hash available in request.env['omniauth.auth']
:
{
provider: 'uber',
uid: 'xxxxxx-yyyyy-zzzz-aaaa-bbbbbbbbbb',
info: {
email: 'foo@bar.com',
first_name: 'Tom',
last_name: 'Milewski',
picture: 'https://d1w2poirtb3as9.cloudfront.net/default.jpeg',
promo_code: 'xxxxx',
},
credentials: {
token: 'ABCDEF...',
refresh_token: 'ABCDEF...',
expires: true
},
extra: {
email: 'foo@bar.com',
first_name: 'Tom',
last_name: 'Milewski',
picture: 'https://d1w2poirtb3as9.cloudfront.net/default.jpeg',
promo_code: 'xxxxx',
uuid: 'xxxxxx-yyyyy-zzzz-aaaa-bbbbbbbbbb'
}
}
omniauth-uber
is tested under 2.2.6, 2.3.3, 2.4.1, and ruby-head.
This library aims to adhere to Semantic Versioning 2.0.0. Violations of this scheme should be reported as bugs. Specifically, if a minor or patch version is released that breaks backward compatibility, that version should be immediately yanked and/or a new version should be immediately released that restores compatibility. Breaking changes to the public API will only be introduced with new major versions. As a result of this policy, you can (and should) specify a dependency on this gem using the Pessimistic Version Constraint with two digits of precision. For example:
spec.add_dependency 'omniauth-uber', '~> 1.0'
Copyright (c) 2014-2017 by Tom Milewski
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.