You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
After an endless search of the generic error Uncaught internal server error.
I found out that the real error was: Firebase auth adater requires an credential. It is triggered in util.js and it isn't properly caught by index.js.
Because somehow it wasn't able to find the credential when passed in ParseServer({..}) and neither when inserted in the .env file or initiated with export.
Hi!
After an endless search of the generic error
Uncaught internal server error.
I found out that the real error was:
Firebase auth adater requires an credential
. It is triggered inutil.js
and it isn't properly caught byindex.js
.Because somehow it wasn't able to find the credential when passed in
ParseServer({..})
and neither when inserted in the .env file or initiated with export.ParseServer({..})
example:To fix the error I had to install dotenv and add
require('dotenv').config()
to myapp.js
to make it reads the environment variables.I wonder if you know why originally it didn't read the credential?
The text was updated successfully, but these errors were encountered: