omniauth-uber

OmniAuth strategy for Uber

  • Owner: omniauth/omniauth-uber
  • Platform:
  • License::
  • Category::
  • Topic:
  • Like:
    0
      Compare:

Github stars Tracking Chart

omniauth-uber

Gem Version
Build Status

Uber OAuth2 Strategy for OmniAuth 1.x and supports the OAuth 2.0 server-side flow.

You may view the Uber API documentation here.

Installation

Add to your Gemfile:

gem 'omniauth-uber'

Then bundle install.

Usage

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

Configuration

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

Scope Details

  • 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

Auth Hash

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'
  }
}

Supported Ruby Versions

omniauth-uber is tested under 2.2.6, 2.3.3, 2.4.1, and ruby-head.

Versioning

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'

License

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.

Overview

Name With Owneromniauth/omniauth-uber
Primary LanguageRuby
Program languageRuby (Language Count: 1)
Platform
License:
Release Count1
Last Release Namev1.1.0 (Posted on )
First Release Namev1.1.0 (Posted on )
Created At2014-08-20 13:34:10
Pushed At2018-10-13 19:28:21
Last Commit At2017-05-23 14:44:21
Stargazers Count18
Watchers Count4
Fork Count13
Commits Count19
Has Issues Enabled
Issues Count3
Issue Open Count0
Pull Requests Count2
Pull Requests Open Count0
Pull Requests Close Count1
Has Wiki Enabled
Is Archived
Is Fork
Is Locked
Is Mirror
Is Private
To the top