Skip to content
This repository has been archived by the owner on Dec 13, 2018. It is now read-only.

Latest commit

 

History

History
21 lines (14 loc) · 715 Bytes

TROUBLESHOOTING.md

File metadata and controls

21 lines (14 loc) · 715 Bytes

Troubleshooting

This document contains a list of common problems that you may run into while working with this library.

"Invalid username or password." when using Social Login

If you are using express-stormpath as your back-end you may see this error when attempting a social login. This happens if the Body Parser module is configured before the Express Stormpath module. If you must do this, please ensure that you are enabling the extended option for the parser:

app.use(bodyParser.urlencoded({ extended: true }));

This issue is being tracked here:

stormpath/express-stormpath#194