Code Monkey home page Code Monkey logo

Comments (7)

gonzalo-bulnes avatar gonzalo-bulnes commented on May 26, 2024

Hello @JoshuaNovak919,

Simple Token Authentication was created to work with a vanilla Devise installation, and it doesn't require you to override the Devise::SessionController at all.

If you want an example of how to install it within a Rails app, you can take a look at this Cucumber step definition. The file contains some noise relative to it's usage by Cucumber (e.g. path: '../../' in this Gemfile line), but you'll find there a sequence of commands to generate quickly a token-authentication-enabled Rails app. If you have issues reading it, just tell me and I'll find something better.

Regards

from simple_token_authentication.

gonzalo-bulnes avatar gonzalo-bulnes commented on May 26, 2024

@JoshuaNovak919
You were asking about a JSON version of the sessions controller, I'm sorry I skipped that (important) part.

Here is a working JSON sessions controller example to use with SimpleTokenAuthentication. Keep me updated! : )

from simple_token_authentication.

JoshuaNovak919 avatar JoshuaNovak919 commented on May 26, 2024

Thanks, that was very helpful. I had to modify it to use request headers for destroy and a few other things, but it was exactly what I needed. Would this work with the current_user helper method though?

from simple_token_authentication.

gonzalo-bulnes avatar gonzalo-bulnes commented on May 26, 2024

Great. And yes, current_user is set when users are signed in by token authentication. Simple Token Authentication relies directly on Devise for signing users in, and the Devise sign_in method takes responsibility for setting the current_user.

from simple_token_authentication.

gonzalo-bulnes avatar gonzalo-bulnes commented on May 26, 2024

I'm closing this issue and I'll edit a little bit its title to make it easier to find.

from simple_token_authentication.

jamespeerless avatar jamespeerless commented on May 26, 2024

Hey gonzalo,

Thanks for this snippet. I was wondering how you would set this up in your routes.rb. I have my api routes namespaced:

namespace :api do
   namespace :v1 do
       # this is my json sign in controller from your snippet above
      post "sessions", :controller => :sessions, :action => :create  

      resources :some_entity
   end
end

The error Im getting is:

Devise] Could not find devise mapping for path "/api/v1/sessions".
This may happen for two reasons:

  1. You forgot to wrap your route inside the scope block. For example:

devise_scope :user do
get "/some/route" => "some_devise_controller"
end

  1. You are testing a Devise controller bypassing the router.
    If so, you can explicitly tell Devise which mapping to use:

    @request.env["devise.mapping"] = Devise.mappings[:user]

I tried wrapping my post session route as they suggest but it still wont work, not really sure what to do about this.

from simple_token_authentication.

gonzalo-bulnes avatar gonzalo-bulnes commented on May 26, 2024

@jamespeerless That's a bit off-topic, but maybe this Devise issue and in particular this comment may help you?

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.