axios-cookiejar-support
Add tough-cookie
support to axios
.
Install
$ npm i axios tough-cookie axios-cookiejar-support
-- OR --
$ npm i axios tough-cookie @3846masa/axios-cookiejar-support
TypeScript
If you want to use it with TypeScript, add @types/tough-cookie
.
npm i @types/tough-cookie
Usage
const axios = require('axios').default;
const axiosCookieJarSupport = require('axios-cookiejar-support').default;
const tough = require('tough-cookie');
axiosCookieJarSupport(axios);
const cookieJar = new tough.CookieJar();
axios
.get('https://google.com', {
jar: cookieJar,
withCredentials: true,
})
.then(() => {
console.log(cookieJar);
});
See examples.
Notice: Set default cookiejar
axios@>=0.19.0
cannot assign defaults.jar
via axios.create()
before wrapping instance.
When you want to set defaults.jar
, please set directly after wrapping instance.
const axios = require('axios').default;
const axiosCookieJarSupport = require('axios-cookiejar-support').default;
const tough = require('tough-cookie');
const instance = axios.create({
jar: new tough.CookieJar(),
});
axiosCookieJarSupport(instance);
instance.defaults.jar = new tough.CookieJar();
Extended Request Config
c.f.) https://github.com/mzabriskie/axios#request-config
{
jar: undefined,
withCredentials: false
}
Browser
Running on browser, this library becomes noop (config.jar
might be ignored).
Contribution
- Fork it
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Add some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create new Pull Request
LICENSE
MIT License
Author
3846masa
Donate
Paypal.me (Onetime donate)