redux-implicit-oauth2 icon indicating copy to clipboard operation
redux-implicit-oauth2 copied to clipboard

OAuth 2.0 Implicit Grant Flow with Redux

Results 3 redux-implicit-oauth2 issues
Sort by recently updated
recently updated
newest added

I can make a call to `dispatch(login(config))` and cause the login window to pop-up. I can successfully get a token, and the store state is populated as expected. If I...

Added option to prevent storage of token in browser local storage. If you set config.disableLocalStorage=true (when calling login), the token will not be stored in local storage. This will prevent...

Based on Instagram's documentation, for the Client-Side (Implicit) Authentication they provide the response to the authentication request as below: `http://your-redirect-uri?state=STATE#access_token=ACCESS-TOKEN` As can be seen from the above, only the access...