express-stormpath
express-stormpath copied to clipboard
Build simple, secure web applications with Stormpath and Express!
When a Facebook OAuth callback errors then resolve the error message from [Facebook's error structure](https://developers.facebook.com/docs/graph-api/using-graph-api#receiving-errorcodes). #### How to verify 1. Start an example application and navigate to `/login`. 2. Click...
# Game Over? > The Stormpath API `shut down` on August 17, 2017. Thank you to all the developers who have used Stormpath.
Hi, I was wondering if this will affect the current release? > As of June 30, 2018, Okta will stop support of Transport Layer Security (TLS) 1.0 and TLS 1.1...
Previously with Stormpath i changed a user's password(after validating the current password) like this: ``` req.user.password = req.body.password; req.user.save(function (err,res) { ... }); ``` This doesn't seem to work with...
when the user submits his data always get this error Property name 'emailVerificationToken' is not defined in profile I checked everything in docs and code and here is the code...
Hello, We are trying to change the password for Okta users using a custom page. ``` changePassword: { enabled: true, uri: "/api/change", view: __dirname + "/views/change-password.jade", nextUri: "/api/login?status=reset", errorUri: "/api/forgot?status=invalid_sptoken"...
Example: If we update a custom field in Okta and logout out from our application and log back in the data we previously saved in Okta is replaced by the...
lib/middleware/groups-required.js ``` userGroups.each( function (group, iterateNext) { if (groups.indexOf(group.name) > -1) { if (!all || --done === 0) { isInGroup = true; } } iterateNext(); }, function () { callback(null,...
"Our application creates users programmatically and I was creating users like so: const spApplication = req.app.get('stormpathApplication'); spApplication.createAccount(acct); With some debugging, that method doesn’t correctly create a user fully. It was...