Git Product home page Git Product logo

omniauth-qq's Introduction

Omniauth QQ

This is QQ strategies collection for OmniAuth 1.0, which includes TQQ and QQ-Connect.

TQQ OAuth

Strategy from https://github.com/ballantyne/omniauth-tqq, credit go to Scott Ballantyne. Please note that some modifies had written into for my own purpose, like: raw_info attributes rewrote.

QQ-Connect OAuth2

Strategy from https://github.com/kaichen/omniauth-qq-connect, credit go to Kai Chen.

Installation

Add to your Gemfile:

gem 'omniauth-qq'

Then bundle install.

Or install it yourself as:

$ gem install omniauth-qq

Usage

OmniAuth::Strategies::Qq is simply a 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 :tqq, ENV['TQQ_KEY'], ENV['TQQ_SECRET']
  provider :qq_connect, ENV['QQ_CONNECT_KEY'], ENV['QQ_CONNECT_SECRET']
end

Authentication Hash

Here's an example Authentication Hash available in request.env['omniauth.auth']:

TQQ returns:

{
  :provider => 'tqq',
  :uid => 'B11630C4...', # QQ call it openid
  :info => {
    :nickname => 'beenhero',
    :email => '',
    :name => 'beenhero',
    :location => '杭州',
    :image => 'http://app.qlogo.cn/mbloghead/b8bc8cee839d42d1824c/40',
    :description => '碳水化合物而已',
    :urls => { :Tqq => 't.qq.com/beenhero' },
  },
  :credentials => {
    :token => '2.00JjgzmBd7F...', # OAuth access_token, which you may wish to store
    :secret => 'ac737720847e...',
  },
  :extra => {
    :raw_info => {
      :data => {
        ... # data from http://open.t.qq.com/api/user/info?format=json, check by yourself
      },
      # extracted some general named attribute from [date]
      :gender => 'm', # m: male, f: female, '': none
      :followers_count: 53,
      :friends_count: 14,
    }
  }
}

QQ-Connect returns:

{
  :provider => 'qq_connect',
  :uid => 'B11630C4...', # QQ call it openid
  :info => {
    :nickname => 'beenhero',
    :image => 'http://qzapp.qlogo.cn/qzapp/100250034/B11630C4AAC8C17B57ECFEA80852C813/50',
    # so little info !? I think so, QQ-Connect only provides so, you can check from the raw_info below. Or you can try TQQ instead :)
  },
  :credentials => {
    :token => '2.00JjgzmBd7F...', # OAuth 2.0 access_token, which you may wish to store
    :expires_at => 1331780640, # when the access token expires (if it expires)
    :expires => true # if you request `offline_access` this will be false
  },
  :extra => {
    :raw_info => {
      ... # little info from https://graph.qq.com/user/get_user_info
    }
  }
}

PS. Built and tested on MRI Ruby 1.9.3

Contributing

  1. Fork it
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Added some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create new Pull Request

License

Copyright (c) 2012 by Bin He

MIT License

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.

omniauth-qq's People

Contributors

beenhero avatar

Stargazers

Minqi Pan avatar

Watchers

James Cloos avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.