redux-auth
redux-auth copied to clipboard
Complete token authentication system for react + redux that supports isomorphic rendering.
Hi, Given the number of pull requests and issues unanswered, I wonder if the project is still maintained. Any information?
See: https://github.com/lynndylanhurley/redux-auth/issues/127. Since the name is generic (e.g `"redux-auth"`), devs could try to use it, then have problems since it's abandoned.
I'm currently getting the following error whenever I try to import a default component. ``` TypeError: Cannot read property 'object' of undefined ./node_modules/redux-auth/default-theme.js node_modules/redux-auth/default-theme.js:1 ```
react-router-redux is in devDependencies, but it needs to be in regular dependencies in package.json
```javascript //redux-auth config configure([],{storage:'localStorage'}) ``` get token code ``` //redux-auth/src/utils/fetch.js 29 line addAuthorizationHeader(currentHeaders['access-token'], nextHeaders); ``` token name is `access-token`. **but save localstorage is `access_token` .**  so , `currentHeaders['access-token'] `...
Has anyone successfully integrated this with https://github.com/react-boilerplate/react-boilerplate? I started with the boilerplate with no changes, added this package, added redux-thunk, put AuthGlobals right under AppWrapper in App/index.js, and in app.js,...
I'm getting error when rendering ``` ``` I'm specifying both required `provider` and `endpoint` props, but I get this error: `Uncaught TypeError: Cannot read property 'getIn' of undefined`
@lynndylanhurley Sorry to be so overt, but it seems that most of the problems maintaining this very helpful package come from the crazy pace of React development, whereas most of...
A there any example with nextjs? this plugin requires `react-router-redux`, is this possible to use it in nextjs?
This PR is to add the missing ending parenthesis to: ``` server.ext("onPreResponse", (request, reply) => { const query = qs.stringify(request.query); const currentLocation = request.path + (query.length ? "?" + query...