Displaying 3 results from an estimated 3 matches for "get_request_token".
2013 Oct 08
1
301 "Moved Permanently" for oauth with rails 2
Hi,
Im using rails 2.3.11 with ruby 1.8.7. My oauth version is 0.4. Im
getting Error ''301 "Moved Permanently"'' while calling get_request_token
method.
--
Posted via http://www.ruby-forum.com/.
--
You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group.
To unsubscribe from this group and stop receiving emails from it, send an email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3Mb...
2013 Jan 29
0
How to stub a class inside a module with Mocha in Ruby?
...sion = options[:api_version] || ''1''
@api_host = options[:api_host] || ''api.twitter.com''
@search_host = options[:search_host] || ''search.twitter.com''
end
...
def request_token(options={})
consumer(:secure => true).get_request_token(options)
end
end
The request_token is the method I''m trying to stub. And this is what
I''ve done in Sinatra which obviously doesn''t work.
before ''/'' do
@twitterClient = TwitterOAuth::Client.new(some_params_in_hash)
end
get ''/login'...
2012 Sep 04
2
How to get contact list from yahoo in rails using OAuth
I can successfully get the contacts from google using OAuth gem in rails.
my gmail configuration is :
:google=>{
:key=>"***",
:secret=>"***",
:expose => true,
:scope=>"https://www.google.com/m8/feeds/"
}
now i want to get contact from yahoo and hot mail. How to get that contact
I have given following configuration in my