我想在 Ruby 中发出 oAuth 请求。我浏览了一些示例,但没有一个用于oauth_token_secret and oauth_token
发出请求,它们仅用于获取consumer_key
and 。但我已经有了和。consumer_secret
oauth_token_secret
oauth_token
oauth_token_secret
oauth_token
例如,我尝试使用的这个
require 'rubygems'
require 'oauth'
consumer = OAuth::Consumer.new(consumer_key, consumer_secret,
{
:site=> "https://www.google.com",
:scheme=> :header,
:http_method=> :post,
:request_token_path => "/accounts/OAuthGetRequestToken",
:access_token_path => "/accounts/OAuthGetAccessToken",
:authorize_path=> "/accounts/OAuthAuthorizeToken",
:signature_method=>"RSA-SHA1"},
# :private_key_file=>PATH_TO_PRIVATE_KEY
)
request_token = consumer.get_request_token()
puts "Visit the following URL, log in if you need to, and authorize the app"
puts request_token.authorize_url
puts "When you've authorized that token, enter the verifier code you are assigned:"
verifier = gets.strip
puts "Converting request token into access token..."
access_token=request_token.get_access_token(:oauth_verifier => verifier)
puts "access_token.token --> #{access_token.token}" # But I initially have it
puts "access_token.secret --> #{access_token.secret}" # But I initially have it
就我而言,有 4 个密钥:
consumer_key = "anonymous"
consumer_secret = "anonymous"
oauth_token_secret = "fdsfdsfdfdsfds"
oauth_token = "fdsfdsfdfdsfdsdsdsdsdsdsds"
所以我需要做的是,使用一些额外的 get 参数和 oAuth 令牌向某个 url 发出 API 请求并得到答案。
我如何在 Ruby 中做到这一点?