Guest User

Untitled

a guest
Jun 15th, 2019
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. const https = require('https');
  2.  
  3. function getHTML (url) {
  4. https.get(url, (res) => {
  5. res.on('data', (d) => {
  6. return d.toString();
  7. });
  8. });
  9. };
  10.  
  11. var res = getHTML('https://api.vk.com/method/users.get');
  12. console.log(res);
Advertisement
Add Comment
Please, Sign In to add comment