laravel-auth-token icon indicating copy to clipboard operation
laravel-auth-token copied to clipboard

Hooks into the laravel auth module and provides an auth token upon success. This token is really only secure in https environment. This main purpose for this module was to provide an auth token to jav...

Results 18 laravel-auth-token issues
Sort by recently updated
recently updated
newest added

We need to have the functionality where the client can be logged into both the app on their phone and the admin panel on their pc at the same time....

Seed your User table: http://laravel.com/docs/migrations php artisan serve # In your first terminal php artisan tinker # http://laravel-recipes.com/recipes/280 > $user = User::find(1); > $authToken = AuthToken::create($user); > $publicToken = AuthToken::publicToken($authToken);...

Hi, we want to use dingo, but the AuthProvider must to be adjusted. Is this possible? https://github.com/dingo/api/wiki/Authentication

Currently laravel-auth-token uses the X-Auth-Token header. However, according to CORS, using a custom header forces a pre-flight OPTIONS request (https://developer.mozilla.org/en-US/docs/Web/HTTP/Access_control_CORS#Preflighted_requests). This probably isn't an issue with native apps, but with...

enhancement

Hey guys, at the moment when i log in everything works lovely, however when i refresh the page my relations aren't loaded into the user like they are when logging...

Hi Terry, Thanks for your great work on this! I have it installed correctly and everything is working fine. I'm trying to make a tweak, however - when a user...

Can you make your controller "store" function input names to be configurable, for example add them to the config file, also with rules.

Add configurable options for POST variable names.

postponed