3.0.3 • Published 6 years ago

shero-test v3.0.3

Weekly downloads
1
License
ISC
Repository
-
Last release
6 years ago

login-test

爬虫模拟Pixiv登录,获取cookie

install

npm install --save pixiv-login

usage

<!-- javascript -->
const pixivLogin = require('pixiv-login');
pixivLogin({
    username: 'your username',
    password: 'your password',
}).then((cookie) => {
    console.log(cookie);
}).catch((error) => {
    console.log(error);
})