0
votes
1answer
24 views

How do I configure omniauth use memcached as a backing store with google in classic sinatra app?

I am attempting to debug an issue where doing oauth with Google when there are multiple app servers behind an EC2 ELB is failing. I believe the issue is related to the fact that the oauth backing ...
2
votes
1answer
90 views

Showing users unique info when facebook authenticate , with Sinatra/ Ruby

Super beginner here. Here's what I am trying to do: Build a basic to do list app, where User X logs in with facebook, adds some items, sees them, logs out. User Y/Z/M/etc, should be able to log in ...
2
votes
1answer
114 views

Access OmniAuth helper in Sinatra view

I'm new to this, so forgive me if I'm being stupid! I'm using OmniAuth for Sinatra to help authenticate users. In my layout.erb, I'd like to access the current_user helper to check if the user is ...
2
votes
1answer
89 views

Ebay authentication with Ruby

I'm developing eBay Sinatra application and need to authenticate an user by their login and password to give them the ability to request their information from eBay by themself. By authentication I ...
2
votes
0answers
265 views

sinatra, omniauth, launchpad.net strategy unable to get request token

I'm attempting to pull a request token via https://launchpad.net using sinatra, and a custom omniauth strategy require 'omniauth-oauth' ...
2
votes
0answers
392 views

Heroku's Facebook Canvas app tutorial: oath error

I'm copy and pasting the code from Heroku's tutorial about building a canvas app to host on Heroku seen here. https://devcenter.heroku.com/articles/facebook-ruby However, I'm getting this error ...
0
votes
2answers
1k views

Ruby, Sinatra , omniauth-github Authentication Failure Callback Error

ok it has been over 5 hours and i am still getting no where. What i am trying to do is setup omniauth-gihub gem in one of my Ruby-Sinatra based applications. Following is What i have done yet. Added ...
0
votes
1answer
302 views

omniauth behind proxy

I have a small app using omniauth and I'm testing it with LinkedIn provider (omniauth-linkedin). Unfortunately my test environment is behind a proxy. So I need to access linkedin through a proxy. How ...
6
votes
1answer
769 views

Sinatra app using omniauth gets Rack::Protection::SessionHijacking in ie9

I have a Sinatra app, that uses omniauth which constantantly gets this error attack prevented by Rack::Protection::SessionHijacking when I try and log in (using a google account). It works fine in ...
1
vote
1answer
371 views

Sinatra + omniauth + Android, advice sought

I'm developing a Sinatra app for which I'd like to use OmniAuth. So far, I have something similar to this for the web app: http://codebiff.com/omniauth-with-sinatra I'd like the web app to be usable ...
1
vote
1answer
427 views

OpenSSL::SSL::SSLError at /auth/facebook/callback with omniauth

I'm dealing with the OpenSLL error on windows, using omniauth. I've tried specifying the cacert.pem file. It is placed in my_app_dir\assets\cacert.pem (downloaded from the curl website), and provider ...
2
votes
2answers
794 views

Omniauth: Login with Github (404 access token)

I use Omniauth to let users login with Github. Step 1. The user is sent to /auth/github and then redirected to github to login. Step 2. The user authenticates itself and Github return this string ...
2
votes
2answers
965 views

How do I use omniauth in rspec for sinatra?

Shortened version: Using the omniauth gem for sinatra, I can't get rspec log in to work and keep my session for subsequent requests. Based on suggestions from ...
1
vote
1answer
259 views

remapping omniauth paths for sinatra

I want to keep my sinatra code organized so I put my auth code in it's own app in my config.ru like so: map "/" do run Main end map "/auth" do run Auth end The problem is omniauth sets up ...
0
votes
1answer
1k views

Sinatra with Warden & Omniauth

Need some high level advice before putting the pieces of an app together.. I'm not entirely sure how these three pieces should fit together. My understanding: I have the user log in using ...
0
votes
1answer
153 views

What am I doing that prevents Sinatra from loading OmniAuth when running Ruby 1.8.7

OmniAuth is supposed to be 1.8.7 compatible and is Rack based. I've created a custom strategy for OmniAuth that is somehow making Sinatra when run with Ruby 1.8.7 / REE unhappy. It works fine with ...
1
vote
2answers
2k views

omniauth and google with sinatra on heroku

I'm trying to use OmniAuth in a sinatra app with google as the login provider. Using the twitter and facebook providers work fine: require 'omniauth' require 'openid' require ...
1
vote
1answer
1k views

OmniAuth Facebook Authentication Nickname returning “profile.php?id=..”

I'm using Sinatra and OmniAuth, trying to authenticate using Facebook. Everything seems to be working properly except for the nickname property. My auth hash is returning something for the nickname, ...
1
vote
1answer
1k views

Omniauth + facebook not working as expected

I am new to Omniauth. I am making a toy application. It displays a random sentence and that's all. I am using Sinatra + Omniauth. I would like to make it a Facebook application. I basically followed ...