Git Product home page Git Product logo

Comments (4)

exocode avatar exocode commented on July 19, 2024

not sure if I am right, but I think you have to override the Devise controller action which causes the redirect. Please someone correct me if I am wrong

from simple_token_authentication.

andreydro avatar andreydro commented on July 19, 2024

Having the same issue

from simple_token_authentication.

andreydro avatar andreydro commented on July 19, 2024

I found solution. You need to override devise failture_app. That is how you can make different behavior for website and api

# lib/custom_failure.rb
class CustomFailure < Devise::FailureApp
  def respond
    if request.env['REQUEST_PATH'].start_with?('/api')
      http_auth
    else
      redirect_to new_user_session_path
    end
  end
end

# config/initializers/devise.rb
config.warden do |manager|
  manager.failure_app = CustomFailure
end

Do not forger to load lib folder in application.rb

config.autoload_paths << Rails.root.join('lib')

from simple_token_authentication.

drihu avatar drihu commented on July 19, 2024

I think maybe you need a fallback (just don't set it) and send a http header Accept: application/json

from simple_token_authentication.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.