# File lib/omniauth/strategies/oauth/hyves.rb, line 7 def initialize(app, consumer_key=nil, consumer_secret=nil, options={}, &block) options = { :methods => 'users.get,friends.get,wwws.create', :expirationtype => 'default' }.merge(options) client_options = { :authorize_path => 'http://www.hyves.nl/api/authorize', :access_token_path => access_token_path, :http_method => :get, :request_token_path => request_token_path(options), :scheme => :header, } super(app, :hyves, consumer_key, consumer_secret, client_options, options, &block) end