Robin Orheden
Robin Orheden
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...
Removes all form logic and replaces it with the Stormpath Widget. #### Discussion - [ ] How to handle `?next`. Fixes https://github.com/stormpath/stormpath-widget/issues/66
Add a code example to demonstrate how to call Facebook after login and retrieve the profile picture. #### How to verify Verify that the description in `examples/facebook_profile_picture/README.md` works.
Add Authorization Code and Access Token docs for social login. #### How to verify 1. Run `$ npm run docs`. 2. Open `/docs/_build/html/social_login.html` to view the new docs. #### Discussion...
Removes givenName and surname restrictions on the registration data model. #### Important This depends on the PR https://github.com/stormpath/stormpath-node-config/pull/61 before it can be merged. #### How to verify Verify that once...
We need to add extensive configuration tests in order to avoid regression related to configuration. Things that we need to test for: - Loading of the default `config.yml` configuration. -...
When a Facebook callback error occurs it renders as `[object Object]`. #### How to reproduce 1. Start an example application and navigate to `/login`. 2. Click the login to Facebook...
Adds JWT helper functions for setting custom header and body keys. #### Important Since we've done a major refactor (see #31), this is based directly on that refactor. So before...
When calling `create()` with a `exp` timestamp claim present, we should use that for expiration instead of the default 1 hour expiration.
Errors are currently only identifiable as `JwtError` or `JwtParseError`. We should create specific errors for each error type so that they can be easily handled. Also, there's currently no documentation...