axios
axios copied to clipboard
Promise based HTTP client for the browser and node.js
see https://github.com/github-community/community/discussions/16925
Remove repeated compression algorithm from default `Accept-Encoding` header.
#### Is your feature request related to a problem? Please describe. Since version 0.27.0 the supported protocols are a fixed set specified in platform. https://github.com/axios/axios/blob/cd8989a987f994c79148bb0cacfca3379ca27414/lib/platform/browser/index.js#L42 We are using axios in...
Doing an axiosRequest with const a = await axios.get(URL) and without any further configuration, it gives error: ' AxiosError: maxContentLength size of -1 exceeded' The contentLength of the website is...
In the Axios Error type, the generic type T is defined as "any", but the previous type is overriding this type and setting it to "unknown":  What was done:...
#### Summary I'm new user from nodejs (expressjs) and axios too and I have a problem. I set cookie from nodejs server with: ``` app.use(cors({ origin: 'http://localhost:2000' credentials: true }));...
#### Summary I'm new user from nodejs (expressjs) and axios too and I have a problem. I set cookie from nodejs server with: ``` app.use(cors({ origin: 'http://localhost:2000' credentials: true }));...
jBody["fcm"]='dyxzsyL7Q5i-enk-KgHErl:APA91bHHqr262tGyPNH5GZiXW4NwgAKsGLztzrw4CtIXgC-PgPnxXrRaJslmkva8H9A1R3kpKWOgCizVJV6_wH3i5hfkxmmjQNf8fAAhzBy-GTL8erhydwpHEqiEuqUCfka6ZKR66btn'; const res = await axios.post(xxx, jBody, headers: { 'Content-Type': 'application/json'}); There is no problem when I try it in postman, but when I try it in react native, I...
Issue: can't have optional `cancelToken` func param for axios. Receiving next error: > Argument of type '{ cancelToken: CancelToken | undefined; }' is not assignable to parameter of type 'AxiosRequestConfig'...