Created
April 24, 2019 11:09
-
-
Save whinette/4bde849d69a16356abdd995efff2f6aa to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const PixivApi = require('pixiv-api-client'); | |
const pixiv = new PixivApi(); | |
//insert there your export from pixivutil2 (option e) in an array: [id1, id2, id3] | |
const bms = [11] | |
var http = require('http'); | |
var server = http.createServer(function(req, res) { | |
res.writeHead(200); | |
res.end('Hi everybody!'); | |
var min = 2000 | |
var max = 5000 | |
pixiv.login('username', 'password', true).then(() => { | |
(function loop(i) { | |
if (i < bms.length) new Promise((resolve, reject) => { | |
console.log(i, bms[i]); | |
setTimeout( () => { | |
// pixiv.unfollowUser(bms[i]); | |
pixiv.followUser(bms[i], 'public'); | |
resolve(); | |
}, Math.random() * (max - min) + min); | |
}).then(loop.bind(null, i+1)); | |
})(0); | |
}); | |
pixiv.logout(); | |
}); | |
server.listen(8081); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment