Advertisement
Guest User

Untitled

a guest
Jan 19th, 2017
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. "use strict"
  2. var login = require("facebook-chat-api"); //Require modules
  3. var request = require("request");
  4.  
  5. // Nhớ thay username và password
  6. login({email: "USERNAME", password: "PASSWORD"}, function callback (err, api) {
  7. if (err)
  8. return console.log(err); // Neu login khong duoc thi hien thong bao loi len console
  9.  
  10. api.setOptions({forceLogin: true, logLevel: 'silent', listenEvents: true}); // Set options cho bot
  11. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement