Tagged Questions
0
votes
1answer
20 views
Omniauth callback processing after authorization
In my Rails app, I have user and authorization tables to handle users and auth data. I set up both Devise and Omniauth to use Twitter to sign up, it redirects to Twitter, but after returning to my ...
0
votes
1answer
28 views
Twitter 3-legged authorization in Ruby
I am trying my hand ruby on rails. Mostly I have written code in Sinatra. Anyway this question may not have to do anything with framework. And this question may sound a very novice question. I am ...
0
votes
0answers
20 views
how to set email_required = false on signup with omniauth-twitter
In a Rails 3.2 app I'm using Devise on a User model, with omniauth-twitter. A User has many Authentications.
Login is via email + password, or via Twitter.
I'm trying to modify the email_required ...
0
votes
2answers
41 views
undefined method `[]' for nil:NilClass when trying to pull twitter avatar
I'm trying to pull in user's profile avatars from twitter using these codes
Any idea how I need to fix this error message?
Here's what I'm using in the Users Helper
module UsersHelper
def ...
0
votes
1answer
25 views
all users are posting to the same twitter account instead of their own (rails 3)
I'm stuck on the last step of the Twitter gem implementation and I have everything working.
Except, when users post, everything is getting sent to the same one Twitter account.
There are users who ...
0
votes
1answer
132 views
Why is the twitter oauth access token invalid / expired (rails 3) [duplicate]
I've been trying to solve this problem for the past three days but to no avail. All I'm looking to do is allow users who logged in using Twitter to tweet to their accounts.
Here's the error message ...
1
vote
2answers
79 views
Twitter::Error::Unauthorized in PostsController#create - Invalid or expired token
Why does "create" throw me an invalid/expired token error?
The users are able to log in just fine (so they are authenticated properly) but when they try to create a post, I get this error. I'm using ...
0
votes
0answers
91 views
Twitter - Error:BadRequest: Bad Authentication data with correct credentials
I'm trying to implement a very simple twitter feed into my spree rails app. I added
gem 'twitter'
to my gemfile, and installed.
Then I created a file, twitter.rb, inside config/initializers with ...
0
votes
2answers
36 views
is there a good guide that explains how to allow users to register/login using Twitter on rails?
I'm looking for a step by step guide. I looked at various videos on youtube, searched the net, read articles, and read threads here but I'm still having some issues. I decided to scrap what I had as ...
1
vote
1answer
146 views
wrong number of arguments (2 for 1) - ArgumentError in TwitterController#login
I'm trying to integrate Twitter onto my website so that users can register and login using Twitter but here's the error that I get when I go to http://localhost:3000/twitter/login
ArgumentError in ...
0
votes
0answers
53 views
Authenticating Twitter on Rails app
I'm using the twitter gem along with amniauth to fetch a user's tweets and display them on my homepage. But when I try to grab tweets from the command line I'm getting a 'bad authentication data' ...
0
votes
0answers
58 views
confused on the next step for twitter integration to work in my rails 3 app
I have a working rails 3 app that I'm trying to integrate twitter on, but I'm a little lost as I've never done anything like this before.
I only want to do three things:
Allow users to register to ...
0
votes
1answer
42 views
automatic t.timestamps after rails generate model, can I manually remove this in the migration file?
I ran rails generate model XXXX user_id:integer stream_url:text etc
I noticed that t.timestamps was part of the migration file. Can I manually remove this line without causing any problems in the ...
0
votes
1answer
108 views
Omniauth twitter login doesn't work
I am using omniauth to login with twiiter/facebook account in my site. It works great with facebook but it doesn't work with twitter. On checking log I found that twitter API doesn't send user email ...
0
votes
0answers
73 views
linking user accounts to their twitter/facebook/etc accounts
I have an existing rails app which uses 'devise' for authentication.
I would like user's to be able to link their twitter and facebook accounts to their account on my site, so that my application can ...
0
votes
2answers
194 views
401 Unauthorized with omniauth-twitter
I'm trying to use omniauth-twitter in a rails app, but i'm stuck at the very beginning and can't figure out what the cause is.
I did register my application in dev.twitter.com and I got the ...
2
votes
2answers
513 views
Rails - Twitter::Error::BadRequest (Bad Authentication data) - After Deploying to Heroku
In my app, I'm providing users to tweet with the following code:
if twitter = current_user.authentications.find_by_provider("twitter")
Twitter.configure do |tw|
...
1
vote
1answer
90 views
Connect an existing user account permanently to twitter to auto-tweet
I want to be able to connect an existing user account to his twitter account.
I want to give the option for the user to connect his twitter account. After that is done once, I would like to be able ...
1
vote
0answers
181 views
OmniAuth with Twitter Strategy intermittent “invalid_credentials” failure for some users
I've implemented OmniAuth + Twitter strategy. It works most of the time for most users. But some users have been getting a consistent failure, and I have not been able to reproduce it or track it ...
0
votes
1answer
120 views
Reusing OAuth token and secret when Consumer key is changed in Twitter application (Rails)
I am working in a Rails application in which i use OmniAuth to authenticate user with Twitter.
Once user is authenticated properly, i then get the OAuth Token and OAuth Secret from Twitter.
I can ...
0
votes
1answer
674 views
Unable to get access token with oauth_verifier, keep getting 401 error
I saw many questions about the same problem, but I just cannot find a way around so I'm asking a question to be sure I did not miss a thing.
On twitter, I set the callback_url to ...
0
votes
1answer
575 views
Simple OmniAuth-Twitter failing to create new user because of validation
I am loosely following Railscasts Simple OmniAuth http://railscasts.com/episodes/241-simple-omniauth to create my Twitter login. When I try to sign in and create a new user through twitter, I get the ...
0
votes
1answer
261 views
manually trigger omniauth callback
Is there any way I can trigger omniauth callback manually?
What I mean to say is, I get the oauth response from twitter in json, can I then POST/GET this data to the omniauth callback url ? If so, is ...
1
vote
1answer
542 views
devise/omniauth login with twitter - validation failed: email can't be blank
I've set up authentication in a rails app using devise, following this tutorial.
It works great, a user can register and then log in using an email and password.
I now want to add the ability to ...
0
votes
0answers
164 views
Reading x-access-Level header for Twitter REST API using omniauth-twitter / twitter Gem
I'm using Omniauth to authenticate users with Twitter through OAuth (using omniauth-twitter gem). I plan to allow normal users to login with just 'read' permissions, and only authorise 'read-write' ...
2
votes
2answers
2k views
Getting First Name/Last Name/Email from Twitter using OAuth
I'm using omniauth exclusively to allow login to my website with facebook/google/twitter.
I store first name, last name, and email. However, when I raise the twitter auth hash from oauth I only get ...
1
vote
1answer
335 views
Twitter User Hash for Sorcery Authentication
I'm using the Sorcery gem and their external module to authenticate with Twitter. I've got the authentication working, but I want to store the user's Twitter profile image URL in my database after a ...
0
votes
1answer
63 views
Can a facebook app support twitter-oauth?
I have a website that plays well with twitter & facebook oAuths. Now, am planning to convert it into an Facebook App?
Now, am wondering if Facebook app supports Twitter OAuth. Will it ?
Also, ...
0
votes
1answer
304 views
How to add tweet for particular user from rails app?
I am using twitter gem.
Twitter.update("message") updates login who registered the app.
How to update a specific login ?
I have tried
Twitter.user('some other user').update('message')
But it ...
0
votes
1answer
217 views
Reply tweets - set in_reply_to_in using twitter_oauth
I am not able to reply to tweets usign twitter_oauth.
Here is my code
@twitter_client = TwitterOAuth::Client.new(
:consumer_key => 'key ',
:consumer_secret => 'secret',
...
0
votes
2answers
312 views
sign-in-with-twitter is not working on Heroku - Rails 3.1
I am using the oa-auth and twitter gem, via this example: https://github.com/sferik/sign-in-with-twitter
When I try to sign in with the button, this is what I see in my logs on Heroku, even though ...
1
vote
1answer
171 views
how to GET and POST on Twitter or facebook in ruby on rails using access tokens
I am using omniauth to authenticate a user via twitter, now as mentioned by twitter API REST architecture, I need to send a GET or POST request to Twitter
twitter api documentation !
I am not able to ...
0
votes
1answer
425 views
Downloading Tweets into Ruby on Rails database
I'm trying to build an app in Ruby on Rails that stores specified tweets in a database.
I think I'm going to use the Twitter gem, but I'm not sure how to go from displaying tweets to actually storing ...
0
votes
3answers
571 views
Auth to twitter with login/password
I'm currently using OAuth to authenticate people with their twitter (twitter gems) acount in my application. The problem is that for people who aren't connected or who have various accounts.
So ...
0
votes
1answer
522 views
Twitter API with rails
I'm trying call the "lookup" method on multiple users on Twitter. According to the documentation, this is feasible.
http://apiwiki.twitter.com/w/page/24142947/Twitter-REST-API-Method:-users-lookup
...
2
votes
1answer
292 views
Trying to get the twitter_auth api to work.. getting no such file to load (LoadError)
$ rails g twitter_auth
/Library/Ruby/Gems/1.8/gems/bundler-1.0.0/lib/bundler/runtime.rb:64:in `require': no such file to load -- twitter_auth/engine (LoadError)
from ...
1
vote
1answer
543 views
Twitter @Anywhere oauth_bridge_code
I'm having trouble with Twitter's implementation of an oauth_bridge_code for the @anywhere api. I've seen a few walkthrough's on how to use this functionality but I can't seem to get the request to ...
2
votes
2answers
2k views
How to make Omniauth work with a popup window?
The default for Omniauth works beautifully if you are opening it in the existing window, but not sure how it works in a popup context, and you are handling a large part of the interactions via ...
2
votes
6answers
1k views
Ruby on Rails OAuth application works on client but not on server (OAuth::Unauthorized (401 Unauthorized))
I have a Ruby on Rails application that works great in my computer and in my server. I'm moving this application to another server that runs on another hosting service, and I got a problem related to ...

