重定向到 github omniauth 路由时如何解决 CORS 错误?

Posted

技术标签:

【中文标题】重定向到 github omniauth 路由时如何解决 CORS 错误?【英文标题】:How to solve CORS error when redirecting to github omniauth route? 【发布时间】:2021-04-08 05:24:07 【问题描述】:

我正在尝试构建一个简单的应用程序,目前仅使用 GitHub 登录进行身份验证。我在后端使用 Rails v5.2.3,在前端使用 React。我目前在我的根组件中有一个按钮,它向我的后端发送一个 ajax 请求。该请求将在我的 SessionsController 中触发一个操作,该操作将重定向到 /auth/github 路由并开始 GitHub 身份验证周期。

我相信这是我遇到错误的步骤。

我的浏览器控制台给了我这个错误信息:

Access to XMLHttpRequest at 'https://github.com/login/oauth/authorize?
client_id=db494fb7eadbc0c6129d&redirect_uri=http%3A%2F%2Flocalhost%3A3000%2Fauth%2Fgithub%2Fcallback&resp
onse_type=code&state=79557eda02a2340f9c02b5254f053528314ea750704690ae' (redirected from 
'http://localhost:3000/authenticate/github') from origin 'http://localhost:3000' has been blocked by CORS
 policy: No 'Access-Control-Allow-Origin' header is present on the requested resource.

以下是一些我认为相关的文件:

Gemfile

source 'https://rubygems.org'
git_source(:github)  |repo| "https://github.com/#repo.git" 

ruby '2.5.1'

# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
gem 'rails', '~> 5.2.3'
# Use postgresql as the database for Active Record
gem 'pg', '>= 0.18', '< 2.0'
# Use Puma as the app server
gem 'puma', '~> 3.11'
# Use SCSS for stylesheets
gem 'sass-rails', '~> 5.0'
# Use Uglifier as compressor for javascript assets
gem 'uglifier', '>= 1.3.0'
# See https://github.com/rails/execjs#readme for more supported runtimes
# gem 'mini_racer', platforms: :ruby

# Use CoffeeScript for .coffee assets and views
gem 'coffee-rails', '~> 4.2'
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
gem 'jbuilder', '~> 2.5'
# Use Redis adapter to run Action Cable in production
# gem 'redis', '~> 4.0'
# Use ActiveModel has_secure_password
# gem 'bcrypt', '~> 3.1.7'

gem 'omniauth-github', github: 'omniauth/omniauth-github', branch: 'master'
gem 'figaro'
gem 'rack-cors'

# Use ActiveStorage variant
# gem 'mini_magick', '~> 4.8'

# Use Capistrano for deployment
# gem 'capistrano-rails', group: :development

# Reduces boot times through caching; required in config/boot.rb
gem 'bootsnap', '>= 1.1.0', require: false

group :development, :test do
  # Call 'byebug' anywhere in the code to stop execution and get a debugger console
  gem 'byebug', platforms: [:mri, :mingw, :x64_mingw]
end

group :development do
  # Access an interactive console on exception pages or by calling 'console' anywhere in the code.
  gem 'web-console', '>= 3.3.0'
  gem 'listen', '>= 3.0.5', '< 3.2'
  # Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
  gem 'spring'
  gem 'spring-watcher-listen', '~> 2.0.0'
  gem 'better_errors'
  gem 'binding_of_caller'
  gem 'pry-rails'
end

group :test do
  # Adds support for Capybara system testing and selenium driver
  gem 'capybara', '>= 2.15'
  gem 'selenium-webdriver'
  # Easy installation and use of chromedriver to run system tests with Chrome
  gem 'chromedriver-helper'
end

# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]

routes.rb

Rails.application.routes.draw do  
  get '/authenticate/:type', to: 'sessions#authenticate'
  get '/auth/:provider/callback', to: 'sessions#create'
  
  root to: 'static_pages#root'
end

initializers/github.rb

Rails.application.config.middleware.use OmniAuth::Builder do
    provider :github, ENV['GITHUB_KEY'], ENV['GITHUB_SECRET']
end

sessions_controller.rb

class SessionsController < ApplicationController
    def authenticate
        redirect_to '/auth/github' if params[:type] == 'github'
    end

    def create
        @user = User.find_or_create_from_oauth(auth_params)

        if @user
            render json: @user
        else
            render json: [params['error']], status: 422
        end
    end

    private

    def auth_params
        request.env['omniauth.auth']
    end
end

root.jsx

import React,  useState  from 'react';
import axios from 'axios';

const Root = () => 

    const [name, setName] = useState('no name yet');

    const githubLogin = () => 
        axios.get('authenticate/github')
            .then(user => setName(user.name));
    

    return (
        <div>
            <button onClick=githubLogin>Github Login</button>
            <h1>Name: name</h1>
        </div>
    )


export default Root;

经过一番研究,我看到了一些添加 rack-cors gem 的建议。我尝试这样做并添加了这个初始化程序。

initializers/cors.rb

Rails.application.config.middleware.insert_before 0, Rack::Cors do
    puts 'setting up cors'
  allow do
    origins '*'
    resource '*', headers: :any, methods: [:get, :post, :patch, :put]
  end
end

在设置 oauth 方面我还是个新手,我正在努力解决这个问题,但这让我很困惑。我不确定我的重定向是否获得了不需要被阻止的标头,并且我确定从这里去哪里。

任何帮助将不胜感激。如果我可以提供任何其他信息,请告诉我。谢谢。

【问题讨论】:

您可以在浏览器中打开http://localhost:3000/authenticate/github 登录吗?我认为您不应该使用 xhr 进行 oauth。 是的,只要我访问该网址,我就可以登录。这与接受的答案一起帮助了我。谢谢! 【参考方案1】:

您收到错误是因为重定向发生在 XHR 的上下文中。

一种解决方案是将 XHR 设置为您的控制器,它会返回客户端必须遵循的 URL。

另一种方法是不制作 XHR 并使用指向您的操作的普通链接。

无论哪种方式,你都应该确保你没有从 JS 请求 GitHub URL。它必须是一个普通的 HTTP(s) 请求。

【讨论】:

谢谢!这是有道理的。我将按钮更改为只是指向操作的普通链接,并且没有再次收到错误,看起来我也从 GitHub 收到了回调。

以上是关于重定向到 github omniauth 路由时如何解决 CORS 错误?的主要内容,如果未能解决你的问题,请参考以下文章

Ruby on rails omniauth-twitter 和设计

Oauth2 Instagram API“重定向 URI 与注册的重定向 URI 不匹配”

react嵌套路由(多重路由)重定向,重定向到404页面,路由重定向

angular---路由之重定向路由

Vue路由重定向、别名与导航守卫

如何在 Laravel 4 中将一个路由重定向到 HTTPS,将所有其他路由重定向到 HTTP?