Sha256: 258ce3f50fb8cb10ba196284543f21d052d438a0c9591138e5c9b40366cd489c
Contents?: true
Size: 1.58 KB
Versions: 3
Compression:
Stored size: 1.58 KB
Contents
require 'omniauth/oauth' require 'multi_json' module OmniAuth module Strategies # Authenticate to Tsohu via OAuth and retrieve basic # user information. # # Usage: # use OmniAuth::Strategies::Tsohu, 'APIKey', 'APIKeySecret' class Tsohu < OmniAuth::Strategies::OAuth def initialize(app, consumer_key=nil, consumer_secret=nil, options={}, &block) @api_key = consumer_key client_options = { :access_token_path => '/oauth/access_token', :authorize_path => '/oauth/authorize', :scheme => :header, :site => 'http://api.t.sohu.com', :request_token_path => '/oauth/request_token', } super(app, :tsohu, consumer_key, consumer_secret, client_options, options, &block) end def auth_hash OmniAuth::Utils.deep_merge( super, { 'uid' => user_hash['id'], 'user_info' => user_info, 'extra' => { 'user_hash' => user_hash, }, } ) end def user_info user_hash = self.user_hash { 'username' => user_hash['screen_name'], 'name' => user_hash['name'], 'location' => user_hash['location'], 'image' => user_hash['profile_image_url'], 'description' => user_hash['description'], 'urls' => { 'Tsohu' => user_hash['url'] } } end def user_hash @user_hash ||= MultiJson.decode(@access_token.get('http://api.t.sohu.com/account/verify_credentials.json').body) end end end end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
oa-oauth-0.3.2 | lib/omniauth/strategies/oauth/tsohu.rb |
oa-oauth-0.3.0 | lib/omniauth/strategies/oauth/tsohu.rb |
oa-oauth-0.3.0.rc3 | lib/omniauth/strategies/oauth/tsohu.rb |