redux-axios-middleware icon indicating copy to clipboard operation
redux-axios-middleware copied to clipboard

Redux middleware for fetching data with axios HTTP client

Results 41 redux-axios-middleware issues
Sort by recently updated
recently updated
newest added

Hi gays! I'm using your middleware. When I use the action (get), server sending me Set-Cookie in requests header but it don`t saving in document cookies. How can I save...

If I want to add params to my request without add it in the URL, it allows to add something like {params}?

My GET is failing with redux-axios-middleware but when I make a simple call with what I believe is the same URL but with just an axios.get, it works. I think...

Hello! Many thanks to you for the work. I have a question. Why is the response used next by default? In this case, the action with the request goes through...

Hi Guys thanks for the middleware library its really helpful. Am facing issue when I receive success response from the server. _FAIL works absolutely fine without error. But, _SUCCESS is...

As the redux-axios-middleware is caching configuration per name of the client it's not possible different store to be passed for testing unless different client is created for each test which...

Have a case where an api do not return the correct error-status with request that fails, so I have added an interceptors in the axios-request ``` const client = axios.create({...

I have a middleware which formats API responses. Is it possible to actions returned by calling `.then`/`.catch` on the request action to be put through that middleware? Example: ``` action/login.js...

What do you guys think about adding a caching option for requests? We could implement an option w/ the cache to bypass cache if last request is older than `age`...

enhancement

`isAxiosRequest` works with `import { isAxiosRequest } from 'redux-axios-middleware/lib/defaults';` Neither working with `import { isAxiosRequest } from 'redux-axios-middleware/src/defaults';`. Nor with `import { isAxiosRequest } from 'redux-axios-middleware/dist/bundle';` Also tried with `import...