Class: OAuth::TTY::Commands::QueryCommand
Instance Method Summary
collapse
#initialize, #run
Instance Method Details
#_run ⇒ Object
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
# File 'lib/oauth/tty/commands/query_command.rb', line 21
def _run
consumer = OAuth::Consumer.new(options[:oauth_consumer_key], options[:oauth_consumer_secret],
scheme: options[:scheme])
access_token = OAuth::AccessToken.new(consumer, options[:oauth_token], options[:oauth_token_secret])
uri = URI.parse(options[:uri])
params = parameters.map do |k, v|
Array(v).map do |v2|
"#{OAuth::Helper.escape(k)}=#{OAuth::Helper.escape(v2)}"
end * "&"
end
uri.query = [uri.query, *params].compact * "&"
puts uri.to_s
response = access_token.request(options[:method].to_s.downcase.to_sym, uri.to_s)
puts "#{response.code} #{response.message}"
puts response.body
end
|
#required_options ⇒ Object
17
18
19
|
# File 'lib/oauth/tty/commands/query_command.rb', line 17
def required_options
%i[oauth_consumer_key oauth_consumer_secret oauth_token oauth_token_secret]
end
|