similar to: "message": "Error validating application."

Displaying 20 results from an estimated 200 matches similar to: ""message": "Error validating application.""

2011 Apr 13
5
Nested route with collection
Hi! I try to do nested route with collection, but I always have mistake route: resources :user do resources :todo do member do post :complete end collection do get :completed end resources :post end end View: <%= link_to_if (params[:action] == ''home''), ''Done'', comoleted_user_todo_path %> Browser back me mistake undefined local
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
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
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 ***************************************** OpenSSL::SSL::SSLError SSL_connect returned=1
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_presence_of :role def
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
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
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
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 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 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-forum.com/.
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
2013 May 14
1
Instagram Redirect error
Hi Folks, In just integrate instagram to my app. I got an error while redirect from instagram. {"code": 400, "error_type": "OAuthException", "error_message": "Redirect URI does not match registered redirect URI"} Please advise. Thank you -- You received this message because you are subscribed to the Google Groups "Ruby on
2011 Jan 02
1
fb-connect -Missing client_id parameter
Hi, I used facebook connect in my application for login and registration process using authlogic + authlogic connect gem. It works good in local machine, but in server it shows the error message like this. { "error": { "type": "OAuthException", "message": "Missing client_id parameter." } } Pls provide some solution to fix
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
2012 Apr 24
2
Contribute to open source
Hi,I learned ROR about 3 months period, i get to know some of the features on rails. I''m interested on this web programming technology, and i would like 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
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
2006 Jun 14
5
Converting Hash to and from URL params
I''m sure this is easy since rails does this internally, but I need to convert a string of url formatted variables "foo=bar&baz=snoo&why=because" to a hash, and I need to convert a hash to url format. Now before I roll my own methods to do this, does rails expose this functionality somehow? -- Posted via http://www.ruby-forum.com/.
2008 Oct 13
10
Shibboleth
Can anyone direct me to a really good tutorial on Shibboleth integration with Rails, or indeed some sample code? I''ve been tearing my hair out all day on this one. Thanks RobL --~--~---------~--~----~------------~-------~--~----~ 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