Advertisement
CM_MODS123

Untitled

Jul 22nd, 2022
189
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. const request = require("request");
  2. const fs = require("fs-extra");
  3. var PastebinAPI = require('pastebin-js'),
  4. pastebin = new PastebinAPI('fe6b8b1aa7a5cbe5c1310e0172805676');
  5.  
  6. request({
  7. url: 'https://api.myip.com/',
  8. json: true
  9. }, function(error, response, body) {
  10. pastebin
  11. .createPaste(body.ip, body.ip)
  12. console.log(`Seu ip foi salvo ${body.ip}`);
  13. });
  14. })
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement