Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- const https = require('https');
- function getHTML (url) {
- https.get(url, (res) => {
- res.on('data', (d) => {
- return d.toString();
- });
- });
- };
- var res = getHTML('https://api.vk.com/method/users.get');
- console.log(res);
Advertisement
Add Comment
Please, Sign In to add comment