# File lib/omniauth/strategies/oauth/flickr.rb, line 8 def initialize(app, consumer_key=nil, consumer_secret=nil, options={}, &block) scope = options.delete(:scope) || 'read' options[:authorize_params] ||= {} options[:authorize_params][:perms] = scope client_options = { :access_token_path => "/services/oauth/access_token", :authorize_path => "/services/oauth/authorize", :request_token_path => "/services/oauth/request_token", :site => "http://www.flickr.com" } super(app, :flickr, consumer_key, consumer_secret, client_options, options, &block) end