tappleby / laravel-auth-token

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 javascript web app which could be used to identify users on api calls.
MIT License
255 stars 64 forks source link

Get public token without creating a new one #50

Closed Nekudapsik closed 9 years ago

Nekudapsik commented 9 years ago

Is there any method that I can retrieve a public (serialized) token without creating a new one?

tappleby commented 9 years ago

Sorry for the delay in responding, currently there isnt an easy way to retrieve a token.

You would have to:

Nekudapsik commented 9 years ago

Thank you.