Terry Appleby

Results 39 comments of Terry Appleby

I just saw your PR #33, I wont be merging this one since the main advantage with auth tokens is they are not tied to a specific session ID. The...

I did look over your code, it also failed the [Travis CI build](https://travis-ci.org/tappleby/laravel-auth-token/jobs/28717223) (probably a missing dependency). My point with "deleting all tokens per user" was referring to the current...

I am hoping to revisit how the tokens are generated soon. I had looked into possibly using Json Web Tokens (JWT) instead of storing them in the db (JWT can...

None yet, it will probably come with a redis driver. For the database driver I was thinking of integrating with the [Indatus/dispatcher](/Indatus/dispatcher) package to handle cleanup of expired tokens.

Still none yet. I haven't used this library in over a year which means it hasn't been getting much of my attention lately. The dilemma I am facing right now...

Do you have more details on how API users are using your app vs "web users". Are they the same "session"? If so you can generate a token using: ```...

To simplify things I would recommend a separate controller for tokens, you can use the default controller included in the package for basic use: https://github.com/tappleby/laravel-auth-token#the-controller The alternative would included updating...

Sorry for the delay, just getting caught back up on the issues. As the author of multiauth mentioned, these libraries are not compatible with each other. I am in the...

Yeah this is a known issue with this library, I am in the planning phases of working on a rewrite of this package which should hopefully resolve a lot of...

@adosaiguas this looks like a great solution. I'm on vacation right now but when I get back I will add a note about your solution to the readme.