search for: omniauth

Displaying 20 results from an estimated 29 matches for "omniauth".

2011 Apr 20
1
Omniauth facebook authentication failure
I am using devise and omniauth for authentication. Wherever i click on the facebook login button i get this warning msg. ****************************************** warning: peer certificate won''t be verified in this SSL session ****************************************** But now i get this error msg ********************...
2012 Sep 16
1
“Routing Error No route matches {}” when omniauth failed on registration
(Original question was asked here: http://stackoverflow.com/questions/11506734/routing-error-no-route-matches-when-omniauth-failed-on-registration ) I am using omniauth-identity and configure its "fail on registration". My files: config/initializers/omniauth.rb OmniAuth.config.logger = Rails.logger Rails.application.config.middleware.use OmniAuth::Builder do #... provider :identity, on_failed_registra...
2012 Jan 09
1
Windows, Rails 3.1.3, Omniauth-BrowserID, SSL Erro
One and all, I have scoured the internet high and low tonight and I can not for the life of me fix this damn problem. I have downloaded certificates, installed certificates, changed my :ca_path and such as stated in the documentation for omniauth-facebook for which I thought would be ok to do with this one. Can anyone point me in the right direction of how to disable SSL in development mode (I''m still quite a novice so would appreciate a little bit of simple chat. Is there something I can put in my environment file to help? the e...
2012 Oct 06
1
how to scope the /auth/:provider/callback , using OmniAuth for users and members
I have two separate groups of people authenticated w Devise , but in this case I cannot used the Devise embedded OmniAuth support. So i am using directly the OmniAuth gem. Initialized w : Rails.configuration.middleware.use OmniAuth::Builder do ..provider :twitter, .. end It''s running fine , but I have an issue with the callback route mapping : I tried match ''/users/auth/:provider/callback'...
2013 Aug 26
2
linkedin login using omniauth
Hi, I am trying to add linkedin login feature in my rails application using omniauth gem..I used omniauth gem for Fb login and it''s working fine..but it''s not working for linkedin login this is my code /model/user.rb class User < ActiveRecord::Base attr_accessible :name, :oauth_expires_at, :oauth_token, :provider, :uid def self.from_omniauth(auth)...
2011 Nov 21
0
OmniAuth provider not working (single sign on, two Rails apps)
I''m new to OmniAuth and am trying to get two sample apps (a provider and a client) to work. I have two sample apps I forked from a blog post on omniauth and single sign in: http://blog.joshsoftware.com/2010/12/16/multiple-applications-with-devise-omniauth-and-single-sign-on/ Provider - https://github.com/RobZolkos/s...
2012 Jan 18
4
Adding a custom select to omniauth register form
Hi, I''m creating a rails app using omniauth 1.0.1 on Rails 3.1.3 and ruby 1.9.2 I''m having trouble adding a select field that populates from a class constant in my user model. Here''s my model: class User < ActiveRecord::Base ROLES = ["Customer","Service Supplier"] has_many :leads validates_...
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
2011 Aug 03
2
FYI: Heroku Cedar, pg, openssl, omniauth, troubles and a solution
Hi guys, I found a really nasty issue that affects people running on Heroku''s cedar stack. We are using Rails 3.1.rc5, pg 11, omniauth 2.6. Ruby is 1.9.2.180p Basically there is an incompatibility between the http, pg and OpenSSL modules which segfaults when making https calls, for example to log in through twitter. Now pg is a required gem when using Heroku cedar stack so leaving that one out is not an option. What fixed this w...
2013 Oct 07
2
Omni_auth with Facebook
Hi, I''ve implemented the sample app with omni_auth(''0.2.6''). I''m using rails 2.3.11 with ruby 1.8.7. I tried to connect with Facebook but getting oauth error. I tested it with twitter & google plus account. Both are working fine but the FB connects is not working yet. Can you please help me out?. -- Posted via http://www.ruby-forum.com/. -- You
2011 Feb 09
0
(Devise+Omniauth) Adding a port number to the callback URL patch applied but not working with openid
I was facing problem reported in issue # 101 (https://github.com/ intridea/omniauth/issues/issue/101) and able to resolve it by suggested code (mbleigh on January 12, 2011) in environment.rb However, open ID is still not working. (As mentioned in fix too). Can someone please help to resolve this or any workaround ? regards, Jaymin -- You received this message because you are...
2011 Jul 19
0
Setting up omniauth with salesforce login in rails 2.3.8( ruby 1.8.6)
Hi, We have a production rails app running on ruby 1.8.6 with rails version 2.3.8. We are thinking about setting up omniauth to allow users login through salesforce. But the omaniauth ldap dependency inturn depends on ruby 1.8.7. Is there any way we can setup ominauth without ldap dependency to work on ruby 1.8.6? -- Azhagu Selvan SP -- You received this message because you are subscribed to the Google Groups &quo...
2011 Mar 01
1
Writing Rspec for signup using facebook
Hi, We are using omniauth for signup through Facebook and twitter. Is there any way i can check this by rspec controllers since it contains callbacks n all..so i think we may have to use mock models. If there is any link or documentation please let me know so that i can start implementing. -- Posted via http://www.ruby-fo...
2011 Mar 03
1
which oauth gem to use?
Does any1 have any recommendations for an oauth gem. I am trying to create a twitter proxy. I''m not sure which oauth gem to use. Thanks in advance! -- 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 post to this group, send email to
2011 May 13
2
"message": "Error validating application."
Hi I''m using omniauth to authenticate whith facebook and twitter Twitter is ok But when i push facebook button and log in facebook account it returns me message { "error": { "type": "OAuthException", "message": "Error validating application." } } Ho...
2012 Apr 24
2
Contribute to open source
...ke to spent some of my time to contribute a little to open source. Can anyone here give me some correct approach that I can start with small project? or any examples? Is tht neccessay that i have to expert in Ruby in contributing to open source ? like those framework such as ,devise, paperclip, omniauth ,koala ,etc(these gems that currently i''m working on) ... Any discussion is welcome for everyone :) -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To view this discussion on the web visit https://groups.google.com/d/ms...
2012 Dec 03
2
Stop User from Changing URL
I have an authentication and autherization system built on the same lines outlined by Michael Hartl, rails tutorial. Here is the employees_controller.rb: class EmployeesController < ApplicationController before_filter :signed_in_employee, only: [:index, :edit, :update] before_filter :correct_employee, only: [:edit, :update] etc etc
2011 Sep 22
9
Referral generation and tracking
Here are two things that need to be done. 1. Generate Referreal URL''s for users. -- people will signup and a referral URL will be generated for them, which they can share 2. Track those referral URL''s -- I will have to track performance of each referral URL How can go about doing this using Rails 3.1 -- You received this message because you are subscribed to the Google
2011 Apr 11
12
Freelance Developer using Rails
Hi all, Is anyone doing freelance rails development? I need some advice before I jump in. Thanks, -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To unsubscribe from this group, send email to
2011 Feb 01
0
Announcing sorcery-0.1.0
...100% test coverage (100+ specs). == Where from here: fix bugs when found. improve existing features. add new features. I''ve got many plans which include: * Basic HTTP Authentication * Auto login * Other reset password strategies (security questions?) * Sinatra support * Mongoid support * OmniAuth integration * Activity logging * Have an idea? Let me know, and it might get into the gem! That''s it for now, Hope you will try it and let me know what you think. Thanks, Noam. -- Posted via http://www.ruby-forum.com/. -- You received this message because you are subscribed to the Go...