The oauth-ruby tag has no wiki summary.
0
votes
0answers
185 views
401 Unauthorized error in Rails two-legged OAuth provider
I'm trying to implement a two-legged OAuth provider on Rails.
I followed these instruction for installing the consumer and provider:
https://github.com/pelle/oauth-plugin
with these instructions to ...
1
vote
1answer
1k views
RequestToken Oauth-plugin 401 Unauthorized
I successfully implemented OAuth using the oauth-plugin gem with Rails 3.0.9. However, once I upgraded to Rails 3.1.3, I'm receiving an error when attempting to get the request token.
I've been ...
2
votes
2answers
414 views
Twitter Authenticate displays Authorize screen and on reload it Authenticates and continues to callback
I am following everything from the documentation:
http://dev.twitter.com/pages/sign_in_with_twitter
I am working on a rails app and this is how my code looks like (code
below uses oauth ruby gem):
...
0
votes
1answer
991 views
OAuth signature verification fails
I'm having some problem setting up an oauth provider with two-legged authentication.
I'm using the oauth-plugin gem and the oauth gem, everything works fine except for my "update" requests. The ...
1
vote
1answer
756 views
Google Calendar Data API Integration
We're using Oauth to grab Calendar event data. I have successfully authorized the token and exchange it for an access token. When I perform a get request to the API endpoint I get a page that says ...
7
votes
1answer
3k views
Getting an Access Token with OAuth-Ruby and Tumblr API (Rails 3)
I am using OAuth-Ruby to do an OAuth authentication with a Tumblr application. I am able to write code that progresses through the various steps of OAuth, but I cannot get an access token or actually ...
1
vote
1answer
787 views
issue with yql (yahoo api's) using oauth
i am using oauth_util.rb ( https://gist.github.com/383159 ) and my YQL query is
"select * from search.termextract where context=\"#{text}\""
This works where text is a short string, but fails for ...
1
vote
1answer
3k views
How do I use the access token in omniauth for Facebook?
I have set this in the initializer
Rails.application.config.middleware.use OmniAuth::Builder do
provider :facebook , 'app' , 'secret' , {:scope => "manage_pages"}
end
And I have saved the ...
14
votes
1answer
6k views
rails omniauth facebook extended permission
I have read the omniauth oauth rdoc
@consumer = OAuth::Consumer.new(key, secret, {
:site => "http://term.ie",
:scheme => :header,
:http_method ...
1
vote
2answers
893 views
How to get the “oauth access secret” for a connection to the soundcloud api
Sorry if the question is stupid, but I am new to using APIs of Websites. But since a long time I wanted to learn this and today started with the simple example of how to access information from ...
0
votes
1answer
233 views
How do I get params with oauth?
I have some confusion regarding Ruby and OAuth. Basically, this is what I'm doing:
@oauth.get('/foo.json?page=1')
However, for some reason outside of my understanding, the provider application is ...
3
votes
2answers
1k views
Using Ruby + OAuth to access Yelp API
I just getting started with OAuth, and I tried to make a small client to connect to some webservices... I tried twitter and it worked like a charm, however, I also tried to access Yelp V2 API ...
0
votes
1answer
1k views
Two-legged OAuth Provider Ruby
Does anyone know of any examples of a two-legged Oauth provider in ruby? Preferably one done using the oauth gem.
Thanks.
Edit: I was able to solve this, it was surprisingly simple, which explains ...
0
votes
1answer
136 views
This is my OAuth and TripIt controller. Is this sane?
I am working on integrating the TripIt API into a project of mine. I'm new to OAuth so I'm learning this as I go. The following controller seems to be working. However, I want to make sure I'm not ...
3
votes
1answer
5k views
Rails Twitter OAuth Strategy with Devise
I have been searching to figure out how exactly to use the oauthable module in the Devise gem for Rails 3. I have come across a couple of questions on here that seem correct, but I was unable to get ...
3
votes
2answers
2k views
Ruby OAuth Nightmare: Using Contacts API
I've been spending the last few days banging my head against the wall on supporting the ability to add a contact to the Google Contacts API in my Rails 3 application. Despite many false starts, I've ...
12
votes
2answers
2k views
How do I connect to Gmail's IMAP server using oauth in Rails3?
I found the gmail_xoauth gem, which does most of what I need, but I also need to generate the oauth tokens (consumer_key and consumer_secret) from inside Rails3.
I am trying to integrate Gmail's ...
3
votes
1answer
3k views
OAuth Provider Service and Rails 3
I am trying to look into setting up an OAuth Provider Server with Rails 3 but can't seem to find anything out there to accomplish this.
I am also a newb when it comes to oauth, so excuse my ...
2
votes
1answer
144 views
oauth2 and trusted sites
is there any possibility to work with trusted sites (for example - sites of one developer) using oauth/oauth2 without confirmation of access to user data?
0
votes
2answers
278 views
Which is the best 0auth gem for a rails app?
I'm going to add Oauth autenthication to my rails web app. Since I don't want to reinvent the wheel, have you got some ruby gem to suggest to add this kind of feature?
TIA
Paolo
0
votes
2answers
836 views
De-authorizing a twitter OAuth application
We just finished implementing OAuth in our RoR application using the Twitter gem. The whole authentication process works perfectly and we are able to persist access tokens. We're wondering if there's ...
1
vote
2answers
980 views
401 Unauthorized for foursquare OAuth
OK, I am pulling my hair after trying this out too many times to debug.
So please help me out here. I keep getting 401 Unauthorized error after I am redirected back.
Here is my code. What am I doing ...
1
vote
1answer
1k views
Why does the OAuth Unauthorized Error (401) happen?
Sometimes an Twitter OAuth is successfully executed, but an unauthorized error is thrown. I get about 50 of these on a daily basis. It is worrying, because I have no idea how that might be reproduced.
...
1
vote
1answer
505 views
google oauth doesn't redirect to callback after authorization
I can't seem to get google to redirect to the callback url after obtaining the auth token.
By redirecting the user to the following url, the user can click grant or deny access.
After that the user ...
0
votes
1answer
326 views
Tagging a user in Open Graph API using Ruby
I have found some really sparse documentation about the options for posting to your feed.
I am trying to post to "/me/feed" and then include a user in that post. I am trying to re-create the way ...
0
votes
2answers
979 views
Ruby Oauth File upload/Multipart POST request
I've been looking at this for a couple of days now and haven't
found a solution. Is there a way to upload a file using OAuth-Ruby?
I am working with a REST system that protects their resource with ...