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}"
localhost:3000/blogs/railsand succeeded then renderlocalhost:3000/blogs/rails– Kapanjadi Momod Feb 1 at 15:15