vinkashq / firebase-auth-laravel

Firebase Authentication package for Laravel PHP framework
http://vinkas.discuss.group/c/firebase-auth-laravel
MIT License
39 stars 14 forks source link

vinkas.firebase.auth.warning_verify_email #2

Open niilante opened 7 years ago

niilante commented 7 years ago

vinkas.firebase.auth.warning_verify_email

Don't know why this comes when I try to login my firebase account

vinothkannans commented 7 years ago

I think you didn't done the below step from installation instructions

Run php artisan command to publish package files into your app

php artisan vendor:publish --provider="Vinkas\Firebase\Auth\ServiceProvider"

Above step will copy lang file to app to display warning message below when user didn't verified the email address.

https://github.com/vinkas0/firebase-auth-laravel/blob/8b444fb6e400b33abeee050f585473c70e83f3ed/src/resources/lang/en/auth.php#L16

jimfrenette commented 7 years ago

Thanks for this package Vinoth. I have run the publish command successfully, and I also get this message when trying to authenticate using twitter.

vinkas.firebase.auth.warning_verify_email

I have verified that my twitter is setup properly. I will set a breakpoint in my php debugger and report back my findings. Below is the output after running the publish command

➜ laravel php artisan vendor:publish --provider="Vinkas\Firebase\Auth\ServiceProvider" Copied Directory [\vendor\vinkas\firebase-auth-laravel\database\migrations] To [\database\migrations] Copied Directory [\vendor\vinkas\firebase-auth-laravel\src\assets] To [\public\vinkas\firebase] Copied Directory [\vendor\vinkas\firebase-auth-laravel\src\resources\views] To [\resources\views\vinkas\firebase] Copied Directory [\vendor\vinkas\firebase-auth-laravel\src\resources\lang] To [\resources\lang\vinkas\firebase] Publishing complete for tag []!

masumonline commented 7 years ago

Same here