Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have blog app, and users can comment on blog if already logged in connect with facebook, I'm using omniaut-facebook gem.

I put a link connect w/ facebook on any localhost:3000/blogs/:permalink

how to render current_page when user click link connect w/ facebook on localhost:3000/blogs/rails and succeeded then render localhost:3000/blogs/rails

class User::SessionsController < ApplicationController
 def create
    user = User.from_omniauth(env["omniauth.auth"])
    session[:user_id] = user.id
    render "localhost:3000/blogs/:permalink"
    end

end

how can I do it? Please help me..

thanks for who have closed my quetions..

ok problem solved

origin = request.env['omniauth.origin']
redirect_to "#{origin}"
share|improve this question
I don't know what you are asking. You are not saying what doesn't work. You are not saying how you want it to work, but it isn't doing it. – Marlin Pierce Feb 1 at 12:46
how to render current_page when user click link connect w/ facebook on localhost:3000/blogs/rails and succeeded then render localhost:3000/blogs/rails – Kapanjadi Momod Feb 1 at 15:15
You're still asking how-to, but not including what is going wrong. – Marlin Pierce Feb 1 at 15:19

closed as not a real question by Deefour, Andy H, Stewbob, cha0site, Bob Kaufman Feb 1 at 15:09

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

1 Answer

up vote 2 down vote accepted

First you need to add some routes to handle the paths that OmniAuth uses.

/config/routes.rb

  match 'auth/:provider/callback', to: 'users/sessions#create'
  match 'auth/failure', to: redirect('/')
  match 'signout', to: 'users/sessions#destroy', as: 'signout'

When Facebook redirects back to your app now, it will look for the create action in a SessionsController.

/app/controllers/user/sessions_controller.rb

class User::SessionsController < ApplicationController
  def create
    user = User.from_omniauth(env["omniauth.auth"])
    session[:user_id] = user.id
  end
end
share|improve this answer
I've done was previously, how to back to localhost:3000/blogs/:permalink – Kapanjadi Momod Feb 1 at 14:55
1  
Check the path of /blogs/:permalink by running rake routes and then use redirect_to. Probably if your path after running rake routes is blog_path then just do redirect_to blog_path(params[:permalink]) – Saurabh Jain Feb 1 at 15:04
:permalink=>nil thanks @saurabh, for sharing his knowledge with me.. – Kapanjadi Momod Feb 1 at 15:37

Not the answer you're looking for? Browse other questions tagged or ask your own question.