0

我正在使用omniauth youtube和google oauth2 gems通过youtube登录。这一切都很好,但前提是用户已经使用他们尝试登录的帐户创建了一个 youtube 频道。

当用户尝试在没有创建 youtube 频道的情况下登录和授权时,它会出错并显示以下消息:

OAuth2::Error

    <HTML>
    <HEAD>
    <TITLE>NoLinkedYouTubeAccount</TITLE>
    </HEAD>
    <BODY BGCOLOR="#FFFFFF" TEXT="#000000">
    <H1>NoLinkedYouTubeAccount</H1>
    <H2>Error 401</H2>
    </BODY>
    </HTML>

我该如何处理此错误,以便将用户发送到他们的 youtube 帐户,在那里他们可以创建他们的 youtube 频道,然后使用有效的登录凭据被重定向回该站点,或者被发送回一个页面,该页面提供了有关如何操作的说明创建一个 youtube 频道并重试?

我的代码如下:

用户.rb

def self.from_omniauth(auth)
    where(auth.slice(:provider, :uid)).first_or_initialize.tap do |user|
      user.provider = auth.provider
      user.uid = auth.uid
      user.name = auth.info.name
      user.email = auth.info.email
      user.oauth_token = auth.credentials.token
      user.oauth_expires_at = Time.at(auth.credentials.expires_at)
      user.picture = auth.info.image
      user.save!
      end
    end

会话控制器:

def create
      user = User.from_omniauth(env["omniauth.auth"])
      session[:user_id] = user.id
      redirect_to root_path, notice: "Signed in"
    end

    def destroy
      session[:user_id] = nil
      redirect_to root_path, notice: "Signed out"
    end

    def failure
    end

登录表单

<% if current_user %>
        Logged in as <b><%= current_user.name %></b>
            <%=  image_tag current_user.picture %><br>
            <%= link_to "Sign out", signout_path %>
        <% else %>
            Sign in with <%= link_to image_tag('youtube.png'), "/auth/youtube" %>
        <% end %>

路线

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

更新 我在一个小博客的帮助下得到了这个工作,我将链接到这个地址。此解决方案将失败消息添加到 auth/failure 路由的 url,并正确重定向到带有说明的 youtube 链接页面。

我将以下内容添加到omniauth.rb

OmniAuth.config.on_failure do |env|
  exception = env['omniauth.error']
  error_type = env['omniauth.error.type']
  strategy = env['omniauth.error.strategy']

  Rails.logger.error("OmniAuth Error (#{error_type}): #{exception.inspect}")
    #ErrorNotifier.exception(exception, :strategy => strategy.inspect, :error_type => error_type)

  new_path = "#{env['SCRIPT_NAME']}#{OmniAuth.config.path_prefix}/failure?message=#{error_type}"

  [301, {'Location' => new_path, 'Content-Type'=> 'text/html'}, []]
end

在 auth/failure url 中显示授权错误并将其添加到我的 routes.rb

match 'auth/failure', to: 'static_pages#youtube'
4

1 回答 1

1

嗯...您可以为模型函数设置条件

if user = User.find_by_id(id)
  user
else 
  //procceed with your code to link the account to utube
于 2013-01-08T01:24:04.547 回答