Advertisement
Guest User

Untitled

a guest
Jan 8th, 2019
185
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.02 KB | None | 0 0
  1. #include <_HttpRequest.au3>
  2. $request = _HttpRequest(1,"https://www.facebook.com/")
  3. $cookie = _GetCookie($request)
  4. $username = "" ;Nhập tài khoản vào đây
  5. $password = "" ;Nhập mật khẩu vào đây
  6. $dataLogin = "email="& _URIEncode($username)& "&pass=" & _URIEncode($password)
  7. $header = _HttpRequest(2,'https://m.facebook.com/login/',$dataLogin,$cookie)
  8. $fb_dtsg = StringRegExp($header,'value="(.*?)"',3)
  9. $txt = "Test Code Inbox :)"
  10. $ID = '100022675461619'
  11. For $i = 0 to 5 Step 1 ;Số 5 là số lần bạn cần auto inbox. Thay đổi số lượng inbox bằng cách thay đổi số 5 thành 1 số mà bạn muốn.
  12. Sleep(1500)
  13. $Auto = _HttpRequest(2,"https://m.facebook.com/messages/send/?icm=1&refid=12","fb_dtsg="&_URIEncode($fb_dtsg[0])&"&jazoest=2658170801061191111121011066510858658172113875287841149912069&body="&_URIEncode($txt)&"&send=G%E1%BB%ADi&tids=cid.c."&$ID&"%3A100027306785488&wwwupp=C3&ids%5B"&$ID&"%5D="&$ID&"&referrer=&ctype=&cver=legacy&csid=28d51f5b-1f5f-d2fc-8743-5026ba70dc35")
  14. Next
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement